74 lines
1.5 KiB
JavaScript
74 lines
1.5 KiB
JavaScript
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
testDir: './tests',
|
|
timeout: 30_000,
|
|
|
|
expect: {
|
|
timeout: 5_000,
|
|
},
|
|
|
|
fullyParallel: false,
|
|
|
|
workers: process.env.CI ? 1 : undefined,
|
|
|
|
retries: process.env.CI ? 2 : 0,
|
|
|
|
reporter: process.env.CI
|
|
? [
|
|
['list'],
|
|
['github'],
|
|
['html', { outputFolder: 'playwright-report' }],
|
|
]
|
|
: 'html',
|
|
|
|
use: {
|
|
baseURL: process.env.CI
|
|
? 'http://localhost:4173'
|
|
: 'http://localhost:1234',
|
|
|
|
// WebGL STABILITY
|
|
launchOptions: {
|
|
args: [
|
|
'--use-gl=angle',
|
|
'--use-angle=swiftshader',
|
|
'--enable-webgl',
|
|
'--enable-unsafe-swiftshader',
|
|
'--ignore-gpu-blocklist',
|
|
'--disable-gpu-driver-bug-workarounds',
|
|
'--disable-dev-shm-usage',
|
|
],
|
|
},
|
|
|
|
deviceScaleFactor: 1,
|
|
viewport: { width: 1280, height: 800 },
|
|
|
|
screenshot: 'only-on-failure',
|
|
video: 'retain-on-failure',
|
|
trace: 'retain-on-failure',
|
|
|
|
colorScheme: 'light',
|
|
reducedMotion: 'reduce',
|
|
},
|
|
|
|
projects: [
|
|
{
|
|
name: 'chromium-webgl',
|
|
use: {
|
|
...devices['Desktop Chrome'],
|
|
},
|
|
},
|
|
],
|
|
|
|
webServer: process.env.CI
|
|
? {
|
|
command: 'HOST=127.0.0.1 PORT=4173 DIST_DIR=dist/test node scripts/serve-dist.js',
|
|
port: 4173,
|
|
timeout: 120_000,
|
|
}
|
|
: {
|
|
command: 'npm run dev',
|
|
port: 1234,
|
|
reuseExistingServer: true,
|
|
},
|
|
});
|