diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-05-07 20:43:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-07 20:43:27 +0200 |
commit | 2b66b8a03e4f81cc158be40d07534f26fa762c2b (patch) | |
tree | bdeb6b1e6737bd839c87e2d6d178da42d9004ca4 /cli/tests/integration_tests.rs | |
parent | 93cf3bd5341d5985201ea0905280082d5a3310f9 (diff) |
BREAKING: Remove support for .wasm imports (#5135)
Importing .wasm files is non-standardized therefore deciding to
support current functionality past 1.0 release is risky.
Besides that .wasm import posed many challenges in our codebase
due to complex interactions with TS compiler which spawned
thread for each encountered .wasm import.
This commit removes:
- cli/compilers/wasm.rs
- cli/compilers/wasm_wrap.js
- two integration tests related to .wasm imports
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index b549dc6d0..bbd437623 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1143,12 +1143,6 @@ itest_ignore!(_049_info_flag_script_jsx { http_server: true, }); -itest!(_051_wasm_import { - args: "run --reload --allow-net --allow-read 051_wasm_import.ts", - output: "051_wasm_import.ts.out", - http_server: true, -}); - // TODO(ry) Re-enable flaky test https://github.com/denoland/deno/issues/4049 itest_ignore!(_052_no_remote_flag { args: @@ -1165,12 +1159,6 @@ itest!(_054_info_local_imports { exit_code: 0, }); -itest!(_055_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, -}); - itest!(_056_make_temp_file_write_perm { args: "run --allow-read --allow-write=./subdir/ 056_make_temp_file_write_perm.ts", |