diff options
Diffstat (limited to 'tests/specs/run/unstable_worker/worker_unstable.ts')
-rw-r--r-- | tests/specs/run/unstable_worker/worker_unstable.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/specs/run/unstable_worker/worker_unstable.ts b/tests/specs/run/unstable_worker/worker_unstable.ts new file mode 100644 index 000000000..219f34e7b --- /dev/null +++ b/tests/specs/run/unstable_worker/worker_unstable.ts @@ -0,0 +1,5 @@ +console.log(Deno.permissions.query); +console.log(Deno.consoleSize); +self.onmessage = () => { + self.close(); +}; |