blob: 9ad3a7b289ff0187cbcd9b9160817f0831fbfd12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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));
});
|