Skip to content

Commit

Permalink
run cypress on port :8000
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-north committed Oct 2, 2023
1 parent ec2a3fe commit 7a6239e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ jobs:
- name: Cypress
uses: cypress-io/github-action@v6
with:
config-file: packages/website/cypress.config.ts
start: yarn lerna run test:cypress --scope website
working-directory: packages/website
start: yarn test:cypress
browser: chrome
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -161,8 +161,8 @@ jobs:
- name: Cypress
uses: cypress-io/github-action@v6
with:
config-file: packages/website/cypress.config.ts
start: yarn lerna run test:cypress --scope website
working-directory: packages/website
start: yarn test:cypress
browser: chrome
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion packages/website/cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineConfig } from 'cypress'

export default defineConfig({
e2e: {
baseUrl: 'http://localhost:1234',
baseUrl: 'http://localhost:8000',
testIsolation: false
},
})

0 comments on commit 7a6239e

Please sign in to comment.