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