Skip to content
This repository was archived by the owner on Jan 28, 2025. It is now read-only.

Commit 6e6821b

Browse files
authored
chore: add retries to e2e tests in case Lambda is not yet ready on so… (#771)
1 parent 562f12e commit 6e6821b

File tree

9 files changed

+17
-8
lines changed

9 files changed

+17
-8
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ jobs:
105105
uses: softprops/turnstyle@v1
106106
with:
107107
poll-interval-seconds: 15
108+
same-branch-only: false
108109
env:
109110
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
110111

packages/e2e-tests/next-app-dynamic-routes/cypress.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"responseTimeout": 15000,
55
"requestTimeout": 15000,
66
"experimentalNetworkStubbing": true,
7-
"experimentalFetchPolyfill": true
7+
"experimentalFetchPolyfill": true,
8+
"retries": 4
89
}

packages/e2e-tests/next-app-with-base-path/cypress.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"responseTimeout": 15000,
55
"requestTimeout": 15000,
66
"experimentalNetworkStubbing": true,
7-
"experimentalFetchPolyfill": true
7+
"experimentalFetchPolyfill": true,
8+
"retries": 4
89
}

packages/e2e-tests/next-app-with-trailing-slash/cypress.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"responseTimeout": 15000,
55
"requestTimeout": 15000,
66
"experimentalNetworkStubbing": true,
7-
"experimentalFetchPolyfill": true
7+
"experimentalFetchPolyfill": true,
8+
"retries": 4
89
}

packages/e2e-tests/next-app/cypress.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"responseTimeout": 15000,
55
"requestTimeout": 15000,
66
"experimentalNetworkStubbing": true,
7-
"experimentalFetchPolyfill": true
7+
"experimentalFetchPolyfill": true,
8+
"retries": 4
89
}

packages/e2e-tests/prev-next-app-dynamic-routes/cypress.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"responseTimeout": 15000,
55
"requestTimeout": 15000,
66
"experimentalNetworkStubbing": true,
7-
"experimentalFetchPolyfill": true
7+
"experimentalFetchPolyfill": true,
8+
"retries": 4
89
}

packages/e2e-tests/prev-next-app-with-base-path/cypress.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"responseTimeout": 15000,
55
"requestTimeout": 15000,
66
"experimentalNetworkStubbing": true,
7-
"experimentalFetchPolyfill": true
7+
"experimentalFetchPolyfill": true,
8+
"retries": 4
89
}

packages/e2e-tests/prev-next-app-with-trailing-slash/cypress.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"responseTimeout": 15000,
55
"requestTimeout": 15000,
66
"experimentalNetworkStubbing": true,
7-
"experimentalFetchPolyfill": true
7+
"experimentalFetchPolyfill": true,
8+
"retries": 4
89
}

packages/e2e-tests/prev-next-app/cypress.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"responseTimeout": 15000,
55
"requestTimeout": 15000,
66
"experimentalNetworkStubbing": true,
7-
"experimentalFetchPolyfill": true
7+
"experimentalFetchPolyfill": true,
8+
"retries": 4
89
}

0 commit comments

Comments
 (0)