We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9304ec3 commit bca567eCopy full SHA for bca567e
packages/e2e-tests/lib/runAllTestApps.ts
@@ -8,7 +8,11 @@ export async function runAllTestApps(
8
recipePaths: string[],
9
envVarsToInject: Record<string, string | undefined>,
10
): Promise<void> {
11
- const maxParallel = process.env.CI ? 3 : 6;
+ 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;
16
17
const recipeInstances = constructRecipeInstances(recipePaths);
18
0 commit comments