summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/unstable_worker.ts
blob: a3b89a180c1c52b0bc0c7f58c160708b858e2b3b (plain)
1
2
3
4
5
6
const w = new Worker(
  new URL("workers/worker_unstable.ts", import.meta.url).href,
  { type: "module", name: "Unstable Worker" },
);

w.postMessage({});