diff options
Diffstat (limited to 'tests/testdata/test/replace_timers.js')
-rw-r--r-- | tests/testdata/test/replace_timers.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/testdata/test/replace_timers.js b/tests/testdata/test/replace_timers.js deleted file mode 100644 index 692f1d671..000000000 --- a/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", () => {}); -}); |