diff options
Diffstat (limited to 'cli/tests/testdata/compile/workers/basic.ts')
-rw-r--r-- | cli/tests/testdata/compile/workers/basic.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/tests/testdata/compile/workers/basic.ts b/cli/tests/testdata/compile/workers/basic.ts deleted file mode 100644 index 8edf58de9..000000000 --- a/cli/tests/testdata/compile/workers/basic.ts +++ /dev/null @@ -1,11 +0,0 @@ -import "./worker.ts"; - -console.log("Starting worker"); -const worker = new Worker( - new URL("./worker.ts", import.meta.url), - { type: "module" }, -); - -setTimeout(() => { - worker.postMessage(42); -}, 500); |