Skip to content

Commit

Permalink
fix(ci): attempt different port
Browse files Browse the repository at this point in the history
  • Loading branch information
peterwht committed Aug 25, 2024
1 parent 5e9644a commit 6a85d53
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
uses: cypress-io/github-action@v6
with:
start: yarn start
wait-on: 'http://localhost:8081'
wait-on: 'http://localhost:3000'
wait-on-timeout: 120
browser: chrome
config-file: cypress.config.ts
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
uses: cypress-io/github-action@v6
with:
start: yarn start
wait-on: 'http://localhost:8081'
wait-on: 'http://localhost:3000'
wait-on-timeout: 120
browser: firefox
config-file: cypress.config.ts
Expand Down
2 changes: 1 addition & 1 deletion cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
projectId: 'eup7bh',
e2e: {
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
baseUrl: 'http://localhost:8081/',
baseUrl: 'http://localhost:3000/',
testIsolation: false,
setupNodeEvents(on, config) {
task(on, config);
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default defineConfig({
cypress: true,
}),
],
server: { port: 8081 },
server: { port: 3000 },
build: {
target: 'esnext',
rollupOptions: {
Expand Down

0 comments on commit 6a85d53

Please sign in to comment.