Skip to content

Commit 218b27c

Browse files
committed
test(size): attempt to reduce size benchmark runner concurrency
1 parent 9f969a6 commit 218b27c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/benchmark-size/runner/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ export const sizeReport = async (options: SizeReportOptions) => {
8787
const packageContextToTest = testScope.filter((perTestScope) => changedPackageNames.includes(perTestScope.package));
8888
console.info(`Found ${packageContextToTest.length} packages in the defined scope have size test scope.`);
8989
const localRegistryProcess = spawnLocalRegistry(PORT);
90-
localRegistryProcess.stdout.pipe(process.stdout);
9190

9291
// Wait for the register to spin up.
9392
await sleep(1000);
@@ -101,7 +100,7 @@ export const sizeReport = async (options: SizeReportOptions) => {
101100
packageContext,
102101
}),
103102
})),
104-
{ concurrent: 10 }
103+
{ concurrent: 6 }
105104
);
106105
try {
107106
await tasks.run();

0 commit comments

Comments
 (0)