summaryrefslogtreecommitdiff
path: root/cli/tests/workers_startup_bench.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/workers_startup_bench.ts')
-rw-r--r--cli/tests/workers_startup_bench.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/workers_startup_bench.ts b/cli/tests/workers_startup_bench.ts
index a25dc8ff7..5213e24cd 100644
--- a/cli/tests/workers_startup_bench.ts
+++ b/cli/tests/workers_startup_bench.ts
@@ -6,7 +6,7 @@ async function bench(): Promise<void> {
for (let i = 1; i <= workerCount; ++i) {
const worker = new Worker(
new URL("subdir/bench_worker.ts", import.meta.url).href,
- { type: "module" }
+ { type: "module" },
);
const promise = new Promise((resolve): void => {
worker.onmessage = (e): void => {