import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './tests', reporter: 'list', projects: [ { name: 'mobile-chrome', use: { ...devices['Pixel 5'], }, }, ], });