summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/workers/fetching_worker.js
blob: 77ff471d72eaaa339235749821bb99d327b0cfb8 (plain)
1
2
3
4
5
6
const r = await fetch(
  "http://localhost:4545/workers/fetching_worker.js",
);
await r.text();
postMessage("Done!");
close();