fix(engine): honor explicit render worker counts (#2439)

This commit is contained in:
Miguel Ángel
2026-07-14 14:52:31 -04:00
committed by GitHub
parent 89db718899
commit e05debe1af
2 changed files with 15 additions and 4 deletions
@@ -76,6 +76,17 @@ describe("calculateOptimalWorkers", () => {
expect(workers).toBe(4);
});
it.each([12, 16])(
"honors an explicit %i-worker request above the auto safe maximum",
(requested) => {
expect(calculateOptimalWorkers(900, requested, { concurrency: "auto" })).toBe(requested);
},
);
it("caps explicit worker requests at the documented 24-worker ceiling", () => {
expect(calculateOptimalWorkers(900, 25, { concurrency: "auto" })).toBe(24);
});
});
describe("shouldDisableBrowserPoolForParallelWorker", () => {