20 lines
487 B
JavaScript
20 lines
487 B
JavaScript
|
|
import { defineConfig, devices } from '@playwright/test'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
testDir: './tests/e2e',
|
||
|
|
use: {
|
||
|
|
baseURL: 'http://localhost:5173',
|
||
|
|
// Simula iPhone 14 Pro — dimensioni target dell'app
|
||
|
|
viewport: { width: 393, height: 852 },
|
||
|
|
locale: 'it-IT',
|
||
|
|
},
|
||
|
|
webServer: {
|
||
|
|
command: 'npm run dev',
|
||
|
|
url: 'http://localhost:5173',
|
||
|
|
reuseExistingServer: true,
|
||
|
|
},
|
||
|
|
projects: [
|
||
|
|
{ name: 'mobile-chrome', use: { ...devices['Pixel 5'] } },
|
||
|
|
],
|
||
|
|
})
|