Skip to content

Commit bca567e

Browse files
author
Luca Forstner
authored
test(e2e): Disable concurrent tests for canary tests (#8287)
1 parent 9304ec3 commit bca567e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/e2e-tests/lib/runAllTestApps.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ export async function runAllTestApps(
88
recipePaths: string[],
99
envVarsToInject: Record<string, string | undefined>,
1010
): Promise<void> {
11-
const maxParallel = process.env.CI ? 3 : 6;
11+
const maxParallel = process.env.CANARY_E2E_TEST
12+
? 1 // TODO: figure out why concurrent tests fail for Next.js and remove this concurrency limitation
13+
: process.env.CI
14+
? 3
15+
: 6;
1216

1317
const recipeInstances = constructRecipeInstances(recipePaths);
1418

0 commit comments

Comments
 (0)