summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/test/ops_sanitizer_nexttick.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/test/ops_sanitizer_nexttick.ts')
-rw-r--r--cli/tests/testdata/test/ops_sanitizer_nexttick.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/tests/testdata/test/ops_sanitizer_nexttick.ts b/cli/tests/testdata/test/ops_sanitizer_nexttick.ts
deleted file mode 100644
index 9ad3a7b28..000000000
--- a/cli/tests/testdata/test/ops_sanitizer_nexttick.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import { nextTick } from "node:process";
-
-// https://github.com/denoland/deno_std/issues/1651
-
-Deno.test("test 1", async () => {
- await new Promise<void>((resolve) => nextTick(resolve));
-});
-
-Deno.test("test 2", async () => {
- await new Promise<void>((resolve) => nextTick(resolve));
-});