diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-02-20 23:22:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-20 23:22:07 -0500 |
commit | 6592a92c203b30a8aae72a645ce1822fd740a2a7 (patch) | |
tree | 0efe58b3456cae83fd2d600aea9bcec635f7fd95 /tests/integration/node_compat_tests.rs | |
parent | e32c704970d9c332367757cbd21f1905c2d11486 (diff) |
fix(node/test): disable Deno test sanitizers (#22480)
Closes #22473
Diffstat (limited to 'tests/integration/node_compat_tests.rs')
-rw-r--r-- | tests/integration/node_compat_tests.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/integration/node_compat_tests.rs b/tests/integration/node_compat_tests.rs index 767f23460..26f691636 100644 --- a/tests/integration/node_compat_tests.rs +++ b/tests/integration/node_compat_tests.rs @@ -11,3 +11,11 @@ itest!(node_test_module { exit_code: 1, http_server: true, }); + +itest!(node_test_module_no_sanitizers { + args: "test -A --no-check node/test_no_sanitizers/test.js", + output: "node/test_no_sanitizers/test.out", + envs: env_vars_for_npm_tests(), + exit_code: 123, + http_server: true, +}); |