diff options
author | Tilman Roeder <dyed.green.info@gmail.com> | 2020-02-04 16:27:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-04 11:27:50 -0500 |
commit | 2ab49a80a62f00e5540907d6d85cf15a9cce070e (patch) | |
tree | 68fdefb80f188f0c7cb5ef533d537311d3f74b22 /cli/tests/integration_tests.rs | |
parent | 145188bcf73e614e2df375b9d0a64540aa70f7b3 (diff) |
Do not encode files loaded from network as utf8 (#3856)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 7ca686e38..7d3eaf887 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -834,6 +834,12 @@ itest!(_053_import_compression { http_server: true, }); +itest!(import_wasm_via_network { + args: "run --reload http://127.0.0.1:4545/cli/tests/055_import_wasm_via_network.ts", + output: "055_import_wasm_via_network.ts.out", + http_server: true, +}); + mod util { use deno::colors::strip_ansi_codes; pub use deno::test_util::*; |