39 lines
850 B
TypeScript
39 lines
850 B
TypeScript
|
|
import { defineConfig, devices } from '@playwright/test';
|
||
|
|
import path from 'path';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Read environment variables from file.
|
||
|
|
* https://github.com/motdotla/dotenv
|
||
|
|
*/
|
||
|
|
require('dotenv').config({ path: path.resolve(__dirname, '.env.local') });
|
||
|
|
|
||
|
|
/**
|
||
|
|
* See https://playwright.dev/docs/test-configuration.
|
||
|
|
*/
|
||
|
|
export default defineConfig({
|
||
|
|
testDir: './e2e',
|
||
|
|
fullyParallel: true,
|
||
|
|
forbidOnly: !!process.env.CI,
|
||
|
|
retries: process.env.CI ? 2 : 0,
|
||
|
|
workers: process.env.CI ? 1 : undefined,
|
||
|
|
reporter: 'html',
|
||
|
|
use: {
|
||
|
|
baseURL: 'http://localhost:3000',
|
||
|
|
trace: 'on-first-retry',
|
||
|
|
},
|
||
|
|
|
||
|
|
projects: [
|
||
|
|
{
|
||
|
|
name: 'chromium',
|
||
|
|
use: { ...devices['Desktop Chrome'] },
|
||
|
|
},
|
||
|
|
],
|
||
|
|
|
||
|
|
webServer: {
|
||
|
|
command: 'npm run dev',
|
||
|
|
url: 'http://localhost:3000',
|
||
|
|
reuseExistingServer: !process.env.CI,
|
||
|
|
timeout: 120 * 1000,
|
||
|
|
},
|
||
|
|
});
|