diff options
Diffstat (limited to 'tests/specs/npm/workers/main.ts')
-rw-r--r-- | tests/specs/npm/workers/main.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/specs/npm/workers/main.ts b/tests/specs/npm/workers/main.ts new file mode 100644 index 000000000..f51cf4d90 --- /dev/null +++ b/tests/specs/npm/workers/main.ts @@ -0,0 +1,9 @@ +new Worker(new URL("./worker1.ts", import.meta.url), { + type: "module", +}); +new Worker(new URL("./worker2.ts", import.meta.url), { + type: "module", +}); +new Worker(new URL("./worker3.ts", import.meta.url), { + type: "module", +}); |