From aca21dad1ba576e2e8b81cfa5ac87d58c69f1de6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 7 May 2020 21:15:59 +0200 Subject: 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. --- cli/tests/040_worker_blob.ts | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 cli/tests/040_worker_blob.ts (limited to 'cli/tests/040_worker_blob.ts') 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); -}; -- cgit v1.2.3