Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,16 @@ export default defineConfig({
/* Maximum time one test can run for */
timeout: 30000,

/* Configure projects for Chromium only */
/* Configure projects for Desktop and Mobile */
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},
{
name: 'Mobile Chrome',
use: { ...devices['Pixel 5'] },
},
],

/* Run your local dev server before starting the tests */
Expand Down
Loading