summaryrefslogtreecommitdiff
path: root/tests/specs/future/runtime_api/worker.js
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-09-16 09:28:35 +1000
committerGitHub <noreply@github.com>2024-09-16 09:28:35 +1000
commite4ea9be87463ce1b13e826db80452b17a9762f32 (patch)
tree6f7aa2881fb8dbf08a0ebc99dfc2c85eb3a73d15 /tests/specs/future/runtime_api/worker.js
parenta666c8c9f92d87e7a3b4d4e06fdc027b3bf9663e (diff)
chore: cleanup remaining `internals.future` code (#25624)
Diffstat (limited to 'tests/specs/future/runtime_api/worker.js')
-rw-r--r--tests/specs/future/runtime_api/worker.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/specs/future/runtime_api/worker.js b/tests/specs/future/runtime_api/worker.js
deleted file mode 100644
index eac42fe56..000000000
--- a/tests/specs/future/runtime_api/worker.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import { delay } from "@std/async/delay";
-
-const worker = new Worker(import.meta.resolve("./main.js"), { type: "module" });
-await delay(1_000);
-worker.terminate();