diff options
Diffstat (limited to 'cli/tests/testdata/compat')
| -rw-r--r-- | cli/tests/testdata/compat/worker/worker_test.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/testdata/compat/worker/worker_test.mjs b/cli/tests/testdata/compat/worker/worker_test.mjs index 215605487..7caf6196b 100644 --- a/cli/tests/testdata/compat/worker/worker_test.mjs +++ b/cli/tests/testdata/compat/worker/worker_test.mjs @@ -2,7 +2,7 @@ import { deferred } from "../../../../../test_util/std/async/deferred.ts"; const promise = deferred(); const url = new URL("./worker.mjs", import.meta.url); -const worker = new Worker(url.href, { type: "module", deno: true }); +const worker = new Worker(url.href, { type: "module" }); worker.onmessage = (e) => { const pid = e.data.pid; |
