diff options
Diffstat (limited to 'cli/tests/testdata/test/ops_sanitizer_unstable.ts')
-rw-r--r-- | cli/tests/testdata/test/ops_sanitizer_unstable.ts | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cli/tests/testdata/test/ops_sanitizer_unstable.ts b/cli/tests/testdata/test/ops_sanitizer_unstable.ts deleted file mode 100644 index d1b554adf..000000000 --- a/cli/tests/testdata/test/ops_sanitizer_unstable.ts +++ /dev/null @@ -1,9 +0,0 @@ -Deno.test("no-op", function () {}); -Deno.test({ - name: "leak interval", - // regression test for sanitizer errors being swallowed with permissions. - permissions: {}, - fn() { - setInterval(function () {}, 100000); - }, -}); |