summaryrefslogtreecommitdiff
path: root/tests/testdata/test/replace_timers.js
blob: 692f1d671485926bde7bb00aa72712f114824012 (plain)
1
2
3
4
5
6
7
Deno.test("foo", async (t) => {
  globalThis.setTimeout = () => {};
  globalThis.clearTimeout = () => {};
  globalThis.setInterval = () => {};
  globalThis.clearInterval = () => {};
  await t.step("bar", () => {});
});