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/subdir | |
parent | 96e03e0b93bf75035887ce02880b832123e3c86d (diff) |
fix(cli): correct libs sent to tsc for unstable worker (#8260)
Fixes #8257
Diffstat (limited to 'cli/tests/subdir')
-rw-r--r-- | cli/tests/subdir/worker_unstable.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/subdir/worker_unstable.ts b/cli/tests/subdir/worker_unstable.ts new file mode 100644 index 000000000..3a1ed8b74 --- /dev/null +++ b/cli/tests/subdir/worker_unstable.ts @@ -0,0 +1,5 @@ +console.log(Deno.permissions.query); +console.log(Deno.compile); +self.onmessage = () => { + self.close(); +}; |