diff options
Diffstat (limited to 'cli/tests/unit_node/timers_test.ts')
-rw-r--r-- | cli/tests/unit_node/timers_test.ts | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/cli/tests/unit_node/timers_test.ts b/cli/tests/unit_node/timers_test.ts deleted file mode 100644 index f5cccc9a9..000000000 --- a/cli/tests/unit_node/timers_test.ts +++ /dev/null @@ -1,62 +0,0 @@ -// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. - -import { assert, fail } from "@test_util/std/assert/mod.ts"; -import * as timers from "node:timers"; -import * as timersPromises from "node:timers/promises"; - -Deno.test("[node/timers setTimeout]", () => { - { - const { clearTimeout, setTimeout } = timers; - const id = setTimeout(() => {}); - clearTimeout(id); - } - - { - const id = timers.setTimeout(() => {}); - timers.clearTimeout(id); - } -}); - -Deno.test("[node/timers setInterval]", () => { - { - const { clearInterval, setInterval } = timers; - const id = setInterval(() => {}); - clearInterval(id); - } - - { - const id = timers.setInterval(() => {}); - timers.clearInterval(id); - } -}); - -Deno.test("[node/timers setImmediate]", () => { - { - const { clearImmediate, setImmediate } = timers; - const id = setImmediate(() => {}); - clearImmediate(id); - } - - { - const id = timers.setImmediate(() => {}); - timers.clearImmediate(id); - } -}); - -Deno.test("[node/timers/promises setTimeout]", () => { - const { setTimeout } = timersPromises; - const p = setTimeout(0); - - assert(p instanceof Promise); - return p; -}); - -// Regression test for https://github.com/denoland/deno/issues/17981 -Deno.test("[node/timers refresh cancelled timer]", () => { - const { setTimeout, clearTimeout } = timers; - const p = setTimeout(() => { - fail(); - }, 1); - clearTimeout(p); - p.refresh(); -}); |