Skip to content

Commit d835310

Browse files
committed
test: Increase batch size
1 parent 15457b1 commit d835310

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/testing/playwright/currents.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const config: CurrentsConfig = {
99
? `${process.env.GITHUB_RUN_ID}-${process.env.GITHUB_RUN_ATTEMPT ?? '1'}`
1010
: `local-${Date.now()}`),
1111
orchestration: {
12-
batchSize: Number(process.env.CURRENTS_BATCH_SIZE) || 'auto',
12+
batchSize: Number(process.env.CURRENTS_BATCH_SIZE) || 8,
1313
},
1414
...(process.env.BUILD_WITH_COVERAGE === 'true' && {
1515
coverage: {

packages/testing/playwright/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default defineConfig<CurrentsFixtures, CurrentsWorkerFixtures>({
7878
actionTimeout: 20000, // TODO: We might need to make this dynamic for container tests if we have low resource containers etc
7979
navigationTimeout: 10000,
8080
currentsFixturesEnabled: !!process.env.CI,
81-
currentsBatchSize: 5,
81+
currentsBatchSize: 8,
8282
},
8383

8484
reporter: IS_CI

0 commit comments

Comments
 (0)