summaryrefslogtreecommitdiff
path: root/cli/tests/unstable_worker.ts
blob: 6b5304edf1023cf72874b62e39eb5071ef430044 (plain)
1
2
3
4
5
6
7
8
9
10
const w = new Worker(
  new URL("subdir/worker_unstable.ts", import.meta.url).href,
  {
    type: "module",
    deno: true,
    name: "Unstable Worker",
  },
);

w.postMessage({});