diff options
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(); +}; |