diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-04-26 23:54:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 17:54:07 +0200 |
commit | e4e7d957e8cde899d48878c83f2099b0028dfdef (patch) | |
tree | 23e0503921c4749aab4a0ba08ddaec6b7756f4ba /cli/tests/integration_tests.rs | |
parent | 791513d608279796a6a1fd963ea1d5b012699baa (diff) |
feat(core): enable wasm threading support (#10116)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 50c70213a..92deb9416 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -3446,6 +3446,11 @@ console.log("finish"); output: "wasm.ts.out", }); + itest!(wasm_shared { + args: "run --quiet wasm_shared.ts", + output: "wasm_shared.out", + }); + itest!(wasm_async { args: "run wasm_async.js", output: "wasm_async.out", |