Skip to content

Commit

Permalink
test(e2e): Disable concurrent tests for canary tests (#8287)
Browse files Browse the repository at this point in the history
  • Loading branch information
lforst authored Jun 5, 2023
1 parent 9304ec3 commit bca567e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/e2e-tests/lib/runAllTestApps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ export async function runAllTestApps(
recipePaths: string[],
envVarsToInject: Record<string, string | undefined>,
): Promise<void> {
const maxParallel = process.env.CI ? 3 : 6;
const maxParallel = process.env.CANARY_E2E_TEST
? 1 // TODO: figure out why concurrent tests fail for Next.js and remove this concurrency limitation
: process.env.CI
? 3
: 6;

const recipeInstances = constructRecipeInstances(recipePaths);

Expand Down

0 comments on commit bca567e

Please sign in to comment.