diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-11-06 12:10:19 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-06 12:10:19 +1100 |
commit | 5f7c80986fd9cff6a65d4e419fc2972abe992ccf (patch) | |
tree | 8bbee5a70b33539edb4c24d349e80f5383d7a79c /cli/tests/unstable_worker.ts | |
parent | 96e03e0b93bf75035887ce02880b832123e3c86d (diff) |
fix(cli): correct libs sent to tsc for unstable worker (#8260)
Fixes #8257
Diffstat (limited to 'cli/tests/unstable_worker.ts')
-rw-r--r-- | cli/tests/unstable_worker.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cli/tests/unstable_worker.ts b/cli/tests/unstable_worker.ts new file mode 100644 index 000000000..6b5304edf --- /dev/null +++ b/cli/tests/unstable_worker.ts @@ -0,0 +1,10 @@ +const w = new Worker( + new URL("subdir/worker_unstable.ts", import.meta.url).href, + { + type: "module", + deno: true, + name: "Unstable Worker", + }, +); + +w.postMessage({}); |