diff --git a/playwright.config.js b/playwright.config.js index 945828e..6e88da3 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -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 */