diff options
Diffstat (limited to 'tests/039_worker_deno_ns/no_ns.ts')
-rw-r--r-- | tests/039_worker_deno_ns/no_ns.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/039_worker_deno_ns/no_ns.ts b/tests/039_worker_deno_ns/no_ns.ts index 4cee98bea..0489a00a3 100644 --- a/tests/039_worker_deno_ns/no_ns.ts +++ b/tests/039_worker_deno_ns/no_ns.ts @@ -2,7 +2,7 @@ onmessage = (msg): void => { if (msg.data === "START") { postMessage("no_ns.ts: is window.Deno available: " + !!window.Deno); } else { - const worker = new Worker("./tests/039_worker_deno_ns/maybe_ns.ts"); + const worker = new Worker("./maybe_ns.ts"); worker.onmessage = (msg): void => { postMessage("[SPAWNED BY no_ns.ts] " + msg.data); }; |