summaryrefslogtreecommitdiff
path: root/cli/tests/subdir
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-11-06 12:10:19 +1100
committerGitHub <noreply@github.com>2020-11-06 12:10:19 +1100
commit5f7c80986fd9cff6a65d4e419fc2972abe992ccf (patch)
tree8bbee5a70b33539edb4c24d349e80f5383d7a79c /cli/tests/subdir
parent96e03e0b93bf75035887ce02880b832123e3c86d (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.ts5
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();
+};