diff options
author | andy finch <andyfinch7@gmail.com> | 2019-08-08 17:38:53 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-08-08 14:38:53 -0700 |
commit | 56a82e72d9867a9b5f8a10bc8e4b81b86cd815c9 (patch) | |
tree | 5780460a81c6b4d748b91d96493e2ee9ed13addc /tests/039_worker_deno_ns.ts | |
parent | 520bdb6c31dd08b6f4e52de5116fd23d6d57fdda (diff) |
Resolve worker specifiers relative to main module of host. (#2751)
Diffstat (limited to 'tests/039_worker_deno_ns.ts')
-rw-r--r-- | tests/039_worker_deno_ns.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/039_worker_deno_ns.ts b/tests/039_worker_deno_ns.ts index 1c6830c22..80ada4343 100644 --- a/tests/039_worker_deno_ns.ts +++ b/tests/039_worker_deno_ns.ts @@ -1,5 +1,5 @@ -const w1 = new Worker("./tests/039_worker_deno_ns/has_ns.ts"); -const w2 = new Worker("./tests/039_worker_deno_ns/no_ns.ts", { +const w1 = new Worker("./039_worker_deno_ns/has_ns.ts"); +const w2 = new Worker("./039_worker_deno_ns/no_ns.ts", { noDenoNamespace: true }); let w1MsgCount = 0; |