Skip to content

Commit 6f8283a

Browse files
committed
try something out
1 parent 53ae9ae commit 6f8283a

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

packages/e2e-tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ To get you started with the recipe, you can copy the following into `test-recipe
5454
{
5555
"$schema": "../../test-recipe-schema.json",
5656
"testApplicationName": "My New Test Application",
57-
"buildCommand": "yarn install --network-concurrency 1",
57+
"buildCommand": "yarn install --mutex network ",
5858
"tests": [
5959
{
6060
"testName": "My new test",

packages/e2e-tests/lib/buildRecipeInstances.ts renamed to packages/e2e-tests/lib/constructRecipeInstances.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as fs from 'fs';
22

33
import type { Recipe, RecipeInput, RecipeInstance } from './types';
44

5-
export function buildRecipeInstances(recipePaths: string[]): RecipeInstance[] {
5+
export function constructRecipeInstances(recipePaths: string[]): RecipeInstance[] {
66
const recipes = buildRecipes(recipePaths);
77
const recipeInstances: RecipeInstance[] = [];
88

packages/e2e-tests/lib/runAllTestApps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable no-console */
2-
import { buildRecipeInstances } from './buildRecipeInstances';
2+
import { constructRecipeInstances } from './constructRecipeInstances';
33
import { buildAndTestApp } from './runTestApp';
44
import type { RecipeInstance, RecipeTestResult } from './types';
55

@@ -9,7 +9,7 @@ export async function runAllTestApps(
99
): Promise<void> {
1010
const maxParallel = process.env.CI ? 2 : 5;
1111

12-
const recipeInstances = buildRecipeInstances(recipePaths);
12+
const recipeInstances = constructRecipeInstances(recipePaths);
1313

1414
const results = await shardPromises(
1515
recipeInstances,

packages/e2e-tests/test-applications/create-next-app/test-recipe.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "../../test-recipe-schema.json",
33
"testApplicationName": "create-next-app",
4-
"buildCommand": "yarn install --network-concurrency 1 && npx playwright install && yarn build",
4+
"buildCommand": "yarn install --mutex network && npx playwright install && yarn build",
55
"tests": [
66
{
77
"testName": "Playwright tests - Prod Mode",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "../../test-recipe-schema.json",
33
"testApplicationName": "create-react-app",
4-
"buildCommand": "yarn install --network-concurrency 1 && yarn build",
4+
"buildCommand": "yarn install --mutex network && yarn build",
55
"tests": []
66
}

packages/e2e-tests/test-applications/nextjs-app-dir/test-recipe.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "../../test-recipe-schema.json",
33
"testApplicationName": "nextjs-13-app-dir",
4-
"buildCommand": "yarn install --network-concurrency 1 && npx playwright install && yarn build",
4+
"buildCommand": "yarn install --mutex network && npx playwright install && yarn build",
55
"buildAssertionCommand": "yarn ts-node --script-mode assert-build.ts",
66
"tests": [
77
{

packages/e2e-tests/test-applications/node-express-app/test-recipe.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "../../test-recipe-schema.json",
33
"testApplicationName": "node-express-app",
4-
"buildCommand": "yarn install --network-concurrency 1 && yarn build",
4+
"buildCommand": "yarn install --mutex network && yarn build",
55
"tests": [
66
{
77
"testName": "Test express server",

packages/e2e-tests/test-applications/standard-frontend-react-tracing-import/test-recipe.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "../../test-recipe-schema.json",
33
"testApplicationName": "standard-frontend-react-tracing-import",
4-
"buildCommand": "yarn install --network-concurrency 1 && npx playwright install && yarn build",
4+
"buildCommand": "yarn install --mutex network && npx playwright install && yarn build",
55
"tests": [
66
{
77
"testName": "Playwright tests",

packages/e2e-tests/test-applications/standard-frontend-react/test-recipe.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "../../test-recipe-schema.json",
33
"testApplicationName": "standard-frontend-react",
4-
"buildCommand": "yarn install --network-concurrency 1 && npx playwright install && yarn build",
4+
"buildCommand": "yarn install --mutex network && npx playwright install && yarn build",
55
"tests": [
66
{
77
"testName": "Playwright tests",

0 commit comments

Comments
 (0)