summaryrefslogtreecommitdiff
path: root/cli/tests/subdir/racy_worker.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/subdir/racy_worker.js')
-rw-r--r--cli/tests/subdir/racy_worker.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/cli/tests/subdir/racy_worker.js b/cli/tests/subdir/racy_worker.js
deleted file mode 100644
index 83756b791..000000000
--- a/cli/tests/subdir/racy_worker.js
+++ /dev/null
@@ -1,21 +0,0 @@
-// See issue for details
-// https://github.com/denoland/deno/issues/4080
-//
-// After first call to `postMessage() this worker schedules
-// [close(), postMessage()] ops on the same turn of microtask queue
-// (because message is rather big).
-// Only single `postMessage()` call should make it
-// to host, ie. after calling `close()` no more code should be run.
-
-setTimeout(() => {
- close();
-}, 50);
-
-while (true) {
- await new Promise((done) => {
- setTimeout(() => {
- postMessage({ buf: new Array(999999) });
- done();
- });
- });
-}