diff options
author | Casper Beyer <caspervonb@pm.me> | 2020-08-15 01:48:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 13:48:37 -0400 |
commit | 4b3a3d9d0f84df8997d466d009da9fffdfbdcbe1 (patch) | |
tree | 3b7ca0a8cf91fe50d7b12bfaaafa2db0a45bb50d /cli/tests/integration_tests.rs | |
parent | ac56512ba45714e7520019a2f8983434381c2d05 (diff) |
Enable WebAssembly.instantiateStreaming (#7043)
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 6e487d12f..76f82df23 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2060,6 +2060,11 @@ itest!(wasm_async { output: "wasm_async.out", }); +itest!(wasm_streaming { + args: "run wasm_streaming.js", + output: "wasm_streaming.out", +}); + itest!(wasm_unreachable { args: "run wasm_unreachable.js", output: "wasm_unreachable.out", |