summaryrefslogtreecommitdiff
path: root/cli/tests/error_worker_dynamic.ts
blob: 16fadf5733c95f3bbc46145eff578339aa4081e2 (plain)
1
2
3
const b = new Blob(['throw new Error("hello");']);
const blobURL = URL.createObjectURL(b);
new Worker(blobURL);