summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/workers/nonexistent_worker.ts
blob: 8ebe291145264dd14ebeb2b9a60eb8fb78a426e6 (plain)
1
2
3
4
5
const w = new Worker(new URL("doesnt_exist.js", import.meta.url).href, {
  type: "module",
});

w.postMessage("hello");