diff options
Diffstat (limited to 'tests/testdata/node/test_no_sanitizers/test.js')
-rw-r--r-- | tests/testdata/node/test_no_sanitizers/test.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/testdata/node/test_no_sanitizers/test.js b/tests/testdata/node/test_no_sanitizers/test.js index d2ca8a6c7..edd558710 100644 --- a/tests/testdata/node/test_no_sanitizers/test.js +++ b/tests/testdata/node/test_no_sanitizers/test.js @@ -22,7 +22,8 @@ test("should not complain about resource and op sanitizers", async (t) => { ); }); -test("should allow exit", () => { - // no exit sanitizers - Deno.exit(123); -}); +// TODO(mmastrac): This works, but we don't reliably flush stdout/stderr here, making this test flake +// test("should allow exit", () => { +// // no exit sanitizers +// Deno.exit(123); +// }); |