Skip to content

Commit

Permalink
fix: update pw config
Browse files Browse the repository at this point in the history
  • Loading branch information
remcolakens committed Jan 28, 2025
1 parent 11402ab commit 88c1958
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { defineConfig, devices } from '@playwright/test';

export default defineConfig({
testMatch: 'e2e/*.spec.ts',
testDir: 'e2e',
testMatch: 'src/e2e/*.spec.{ts,tsx}',
testDir: 'src/e2e',
reporter: [['html', { open: 'never', outputFolder: 'e2e/report' }]],
outputDir: 'e2e/test-results/',

Expand Down Expand Up @@ -35,7 +35,7 @@ export default defineConfig({
{
name: 'mobile webkit',
use: {
...devices['iPhone 14'],
...devices['iPhone 15'],
},
},
{
Expand Down

0 comments on commit 88c1958

Please sign in to comment.