perf(test): parallelize unit-isolated

This commit is contained in:
Peter Steinberger
2026-02-14 13:00:31 +00:00
parent 18e8bd68c5
commit ec399aaddf
6 changed files with 80 additions and 14 deletions

View File

@@ -139,7 +139,8 @@ const maxWorkersForRun = (name) => {
return 1;
}
if (name === "unit-isolated") {
return 1;
// Local: allow a bit of parallelism while keeping this run stable.
return Math.min(4, localWorkers);
}
if (name === "extensions") {
return defaultExtensionsWorkers;