Skip to content

Commit e0151ec

Browse files
author
Luca Forstner
committed
hmmm v2
1 parent f99ee18 commit e0151ec

File tree

8 files changed

+7
-8
lines changed

8 files changed

+7
-8
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,6 @@ jobs:
692692
E2E_TEST_DSN: ${{ secrets.E2E_TEST_DSN }}
693693
E2E_TEST_SENTRY_ORG_SLUG: 'sentry-javascript-sdks'
694694
E2E_TEST_SENTRY_TEST_PROJECT: 'sentry-javascript-e2e-tests'
695-
YARN_CACHE_FOLDER: '/var/tmp/e2e-test-yarn-cache'
696695
run: |
697696
cd packages/e2e-tests
698697
yarn test:e2e

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 --pure-lockfile",
57+
"buildCommand": "yarn install --network-concurrency 1",
5858
"tests": [
5959
{
6060
"testName": "My new test",

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 && npx playwright install && yarn build",
4+
"buildCommand": "yarn install --network-concurrency 1 && 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 && yarn build",
4+
"buildCommand": "yarn install --network-concurrency 1 && 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 && npx playwright install && yarn build",
4+
"buildCommand": "yarn install --network-concurrency 1 && 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 && yarn build",
4+
"buildCommand": "yarn install --network-concurrency 1 && 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 && npx playwright install && yarn build",
4+
"buildCommand": "yarn install --network-concurrency 1 && 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 && npx playwright install && yarn build",
4+
"buildCommand": "yarn install --network-concurrency 1 && npx playwright install && yarn build",
55
"tests": [
66
{
77
"testName": "Playwright tests",

0 commit comments

Comments
 (0)