1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/testdata/workers/worker_async_error.ts

6 lines
153 B
TypeScript
Raw Permalink Normal View History

const worker = new Worker(
import.meta.resolve("./async_error.ts"),
{ type: "module", name: "foo" },
);
setTimeout(() => worker.terminate(), 30000);