summaryrefslogtreecommitdiff
path: root/cli/tests/040_worker_blob.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-05-07 21:15:59 +0200
committerGitHub <noreply@github.com>2020-05-07 21:15:59 +0200
commitaca21dad1ba576e2e8b81cfa5ac87d58c69f1de6 (patch)
tree15b657060b27cf48a9d4dc15fd3dd1464dd76a9d /cli/tests/040_worker_blob.ts
parent2b66b8a03e4f81cc158be40d07534f26fa762c2b (diff)
BREAKING: make Worker.deno unstable (#5128)
This commit makes "Worker.deno" option unstable. Added new manual entry "docs/runtime/workers.md". Removed stale workers tests.
Diffstat (limited to 'cli/tests/040_worker_blob.ts')
-rw-r--r--cli/tests/040_worker_blob.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/cli/tests/040_worker_blob.ts b/cli/tests/040_worker_blob.ts
deleted file mode 100644
index 1ba4528cf..000000000
--- a/cli/tests/040_worker_blob.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-const b = new Blob(["console.log('code from Blob'); postMessage('DONE')"]);
-const blobURL = URL.createObjectURL(b);
-const worker = new Worker(blobURL);
-worker.onmessage = (): void => {
- Deno.exit(0);
-};