25 lines
611 B
TypeScript
25 lines
611 B
TypeScript
|
|
import { fileURLToPath } from 'node:url'
|
||
|
|
import { defineConfig, devices } from '@playwright/test'
|
||
|
|
import type { ConfigOptions } from '@nuxt/test-utils/playwright'
|
||
|
|
|
||
|
|
export default defineConfig<ConfigOptions>({
|
||
|
|
testDir: './tests',
|
||
|
|
fullyParallel: true,
|
||
|
|
forbidOnly: !!process.env.CI,
|
||
|
|
retries: process.env.CI ? 2 : 0,
|
||
|
|
workers: process.env.CI ? 1 : undefined,
|
||
|
|
reporter: 'html',
|
||
|
|
use: {
|
||
|
|
trace: 'on-first-retry',
|
||
|
|
nuxt: {
|
||
|
|
rootDir: fileURLToPath(new URL('.', import.meta.url)),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
projects: [
|
||
|
|
{
|
||
|
|
name: 'chromium',
|
||
|
|
use: { ...devices['Desktop Chrome'] },
|
||
|
|
},
|
||
|
|
],
|
||
|
|
})
|