Skip to content

Commit

Permalink
Fix test web server
Browse files Browse the repository at this point in the history
  • Loading branch information
edoardocavazza committed Nov 10, 2023
1 parent 95d9721 commit b231d20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true

- name: Install chromium
- name: Install browser
run: yarn playwright install --with-deps ${{ matrix.browser }}

- name: Run tests
Expand Down
6 changes: 3 additions & 3 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
testDir: 'test',
use: {
baseURL: 'http://localhost:5175',
baseURL: 'http://localhost:5173',
},
webServer: {
command: 'yarn dev',
url: 'http://localhost:5175',
command: 'yarn vite',
url: 'http://localhost:5173',
reuseExistingServer: !process.env.CI,
},
projects: [
Expand Down

0 comments on commit b231d20

Please sign in to comment.