diff options
author | Maayan Hanin <maayan.asa.hanin@gmail.com> | 2020-08-04 00:39:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-03 23:39:48 +0200 |
commit | 5fc5e7b54a9fba421dfc473016625a4f592403ed (patch) | |
tree | e66bbbdaa30b34b7cef8072ded8ea3f0575c47f0 /cli/tests/encoding | |
parent | d615ebefe2e306f2877afb40dc603f71263407d6 (diff) |
fix(cli): add support for non-UTF8 source files (#6789)
Fixes: #5542
Diffstat (limited to 'cli/tests/encoding')
-rw-r--r-- | cli/tests/encoding/utf-16be.ts | bin | 0 -> 58 bytes | |||
-rw-r--r-- | cli/tests/encoding/utf-16le.ts | bin | 0 -> 58 bytes | |||
-rw-r--r-- | cli/tests/encoding/utf-8.ts | 1 | ||||
-rw-r--r-- | cli/tests/encoding/windows-1255 | 1 |
4 files changed, 2 insertions, 0 deletions
diff --git a/cli/tests/encoding/utf-16be.ts b/cli/tests/encoding/utf-16be.ts Binary files differnew file mode 100644 index 000000000..3d0144d7c --- /dev/null +++ b/cli/tests/encoding/utf-16be.ts diff --git a/cli/tests/encoding/utf-16le.ts b/cli/tests/encoding/utf-16le.ts Binary files differnew file mode 100644 index 000000000..6f0e415f2 --- /dev/null +++ b/cli/tests/encoding/utf-16le.ts diff --git a/cli/tests/encoding/utf-8.ts b/cli/tests/encoding/utf-8.ts new file mode 100644 index 000000000..bf889aeb7 --- /dev/null +++ b/cli/tests/encoding/utf-8.ts @@ -0,0 +1 @@ +console.log("Hello World"); diff --git a/cli/tests/encoding/windows-1255 b/cli/tests/encoding/windows-1255 new file mode 100644 index 000000000..ec5cad7fd --- /dev/null +++ b/cli/tests/encoding/windows-1255 @@ -0,0 +1 @@ +console.log("ùìåí òåìí"); |