diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-08-16 09:28:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-16 09:28:29 +0200 |
commit | 163f2ef57117afd410f03be7e7519fc89bd18173 (patch) | |
tree | 03080b2306927efbb2af64869b418c009abd92f5 /cli/tests/integration/run_tests.rs | |
parent | 02b23e057561f11daf004b4ed8d455081dbeac65 (diff) |
fix: parse error when transpiling code with BOM (#11688)
Co-authored-by: David Sherret <dsherret@gmail.com>
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index f5ac82e9c..c7e0325ec 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -1788,3 +1788,8 @@ itest!(tls_connecttls { args: "run --quiet --reload --allow-net --allow-read --cert tls/RootCA.pem tls_connecttls.js", output: "tls.out", }); + +itest!(byte_order_mark { + args: "run --no-check byte_order_mark.ts", + output: "byte_order_mark.out", +}); |