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

w.postMessage({});