summaryrefslogtreecommitdiff
path: root/cli/tests/unstable_worker.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unstable_worker.ts')
-rw-r--r--cli/tests/unstable_worker.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/cli/tests/unstable_worker.ts b/cli/tests/unstable_worker.ts
index 6b5304edf..429754dfe 100644
--- a/cli/tests/unstable_worker.ts
+++ b/cli/tests/unstable_worker.ts
@@ -1,8 +1,10 @@
const w = new Worker(
- new URL("subdir/worker_unstable.ts", import.meta.url).href,
+ new URL("workers/worker_unstable.ts", import.meta.url).href,
{
type: "module",
- deno: true,
+ deno: {
+ namespace: true,
+ },
name: "Unstable Worker",
},
);