summaryrefslogtreecommitdiff
path: root/cli/tests/subdir/worker_globals.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/subdir/worker_globals.ts')
-rw-r--r--cli/tests/subdir/worker_globals.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/cli/tests/subdir/worker_globals.ts b/cli/tests/subdir/worker_globals.ts
deleted file mode 100644
index a9e7efd85..000000000
--- a/cli/tests/subdir/worker_globals.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-onmessage = function (): void {
- postMessage(
- [
- self instanceof DedicatedWorkerGlobalScope,
- self instanceof WorkerGlobalScope,
- self instanceof EventTarget,
- ].join(", "),
- );
- close();
-};