36 lines
897 B
TypeScript
36 lines
897 B
TypeScript
import { defineConfig, devices } from '@playwright/test';
|
|
import * as dotenv from 'dotenv';
|
|
|
|
dotenv.config({ path: '.env.local' });
|
|
|
|
export default defineConfig({
|
|
testDir: './tests',
|
|
fullyParallel: false,
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 1 : 0,
|
|
workers: 1,
|
|
reporter: [
|
|
['html', { outputFolder: 'playwright-report', open: 'never' }],
|
|
['json', { outputFile: 'test-results/results.json' }],
|
|
['list'],
|
|
],
|
|
use: {
|
|
baseURL: process.env.BASE_URL ?? 'https://pbx.local:4443',
|
|
ignoreHTTPSErrors: true,
|
|
screenshot: 'only-on-failure',
|
|
video: 'retain-on-failure',
|
|
trace: 'retain-on-failure',
|
|
actionTimeout: 15_000,
|
|
navigationTimeout: 30_000,
|
|
},
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: { ...devices['Desktop Chrome'] },
|
|
},
|
|
],
|
|
timeout: 90_000,
|
|
expect: { timeout: 10_000 },
|
|
outputDir: 'test-results',
|
|
});
|