summaryrefslogtreecommitdiff
path: root/cli/tests/subdir/deno_worker.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/subdir/deno_worker.ts')
-rw-r--r--cli/tests/subdir/deno_worker.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/cli/tests/subdir/deno_worker.ts b/cli/tests/subdir/deno_worker.ts
deleted file mode 100644
index 6a57c47f0..000000000
--- a/cli/tests/subdir/deno_worker.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-onmessage = function (e): void {
- if (typeof self.Deno === "undefined") {
- throw new Error("Deno namespace not available in worker");
- }
-
- postMessage(e.data);
-};