summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/test/replace_timers.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/test/replace_timers.js')
-rw-r--r--cli/tests/testdata/test/replace_timers.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/cli/tests/testdata/test/replace_timers.js b/cli/tests/testdata/test/replace_timers.js
deleted file mode 100644
index 692f1d671..000000000
--- a/cli/tests/testdata/test/replace_timers.js
+++ /dev/null
@@ -1,7 +0,0 @@
-Deno.test("foo", async (t) => {
- globalThis.setTimeout = () => {};
- globalThis.clearTimeout = () => {};
- globalThis.setInterval = () => {};
- globalThis.clearInterval = () => {};
- await t.step("bar", () => {});
-});