Skip to content

Commit 6a85d53

Browse files
committed
fix(ci): attempt different port
1 parent 5e9644a commit 6a85d53

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:8081'
48+
wait-on: 'http://localhost:3000'
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:8081'
82+
wait-on: 'http://localhost:3000'
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://localhost:8081/',
11+
baseUrl: 'http://localhost:3000/',
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: { port: 8081 },
20+
server: { port: 3000 },
2121
build: {
2222
target: 'esnext',
2323
rollupOptions: {

0 commit comments

Comments
 (0)