Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit df26e65

Browse files
committedAug 25, 2024··
revert(ci): port back to 8081
1 parent 520e9bc commit df26e65

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎.github/workflows/e2e-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
uses: cypress-io/github-action@v6
4646
with:
4747
start: yarn start
48-
wait-on: 'http://localhost:3000'
48+
wait-on: 'http://localhost:8081'
4949
wait-on-timeout: 120
5050
browser: chrome
5151
config-file: cypress.config.ts
@@ -79,7 +79,7 @@ jobs:
7979
uses: cypress-io/github-action@v6
8080
with:
8181
start: yarn start
82-
wait-on: 'http://localhost:3000'
82+
wait-on: 'http://localhost:8081'
8383
wait-on-timeout: 120
8484
browser: firefox
8585
config-file: cypress.config.ts

‎cypress.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default defineConfig({
88
projectId: 'eup7bh',
99
e2e: {
1010
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
11-
baseUrl: 'http://127.0.0.1:3000/',
11+
baseUrl: 'http://127.0.0.1:8081/',
1212
testIsolation: false,
1313
setupNodeEvents(on, config) {
1414
task(on, config);

‎vite.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default defineConfig({
1717
cypress: true,
1818
}),
1919
],
20-
server: { host: '127.0.0.1', port: 3000 },
20+
server: { host: '127.0.0.1', port: 8081 },
2121
build: {
2222
target: 'esnext',
2323
rollupOptions: {

0 commit comments

Comments
 (0)
Please sign in to comment.