summaryrefslogtreecommitdiff
path: root/cli/tests/workers/worker_unstable.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/workers/worker_unstable.ts')
-rw-r--r--cli/tests/workers/worker_unstable.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/workers/worker_unstable.ts b/cli/tests/workers/worker_unstable.ts
new file mode 100644
index 000000000..a5b5f7ba2
--- /dev/null
+++ b/cli/tests/workers/worker_unstable.ts
@@ -0,0 +1,5 @@
+console.log(Deno.permissions.query);
+console.log(Deno.emit);
+self.onmessage = () => {
+ self.close();
+};