diff options
-rw-r--r-- | scripts/test/wasm2js.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test/wasm2js.py b/scripts/test/wasm2js.py index 97320445b..3ccf3c9dc 100644 --- a/scripts/test/wasm2js.py +++ b/scripts/test/wasm2js.py @@ -80,7 +80,7 @@ def test_wasm2js_output(): # `spectest` and `env` modules in our tests. if shared.NODEJS: loader = os.path.join(shared.options.binaryen_root, 'scripts', 'test', 'node-esm-loader.mjs') - node = [shared.NODEJS, '--experimental-modules', '--loader', loader] + node = [shared.NODEJS, '--experimental-modules', '--no-warnings', '--loader', loader] cmd = node[:] cmd.append('a.2asm.mjs') out = support.run_command(cmd) |