-
-
Notifications
You must be signed in to change notification settings - Fork 215
/
playwright.config.ts
77 lines (70 loc) · 1.9 KB
/
playwright.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// @ts-check
import { devices, type PlaywrightTestConfig } from '@playwright/test';
const isCI = ['true', '1'].includes(process.env?.CI ?? '');
const outputDir = new URL('e2e/.out', import.meta.url).pathname;
const testDir = new URL('e2e', import.meta.url).pathname;
// Reference: https://playwright.dev/docs/test-configuration
const config: PlaywrightTestConfig = {
testDir: testDir,
timeout: 6000,
/* Maximum time one test can run for. */
/* Opt out of parallel tests on CI. */
// workers: process.env.CI ? 1 : undefined,
// Artifacts folder where screenshots, videos, and traces are stored.
outputDir: `./output`,
preserveOutput: 'always',
reporter: [
isCI ? ['github'] : ['list'],
['json', { outputFile: `${outputDir}/reports/test-results.json` }],
[
'html',
{
outputFolder: `${outputDir}/reports/html`,
open: isCI ? 'never' : 'on-failure',
},
],
],
use: {
baseURL: 'http://localhost:3000',
headless: true,
// Retry a test if it's failing with enabled tracing. This allows you to analyse the DOM, console logs, network traffic etc.
// More information: https://playwright.dev/docs/trace-viewer
trace: 'retry-with-trace',
contextOptions: {
ignoreHTTPSErrors: true,
},
},
projects: [
{
name: 'Desktop Chrome',
use: {
...devices['Desktop Chrome'],
},
},
// {
// name: 'Desktop Firefox',
// use: {
// ...devices['Desktop Firefox'],
// },
// },
// {
// name: 'Desktop Safari',
// use: {
// ...devices['Desktop Safari'],
// },
// },
// Test against mobile viewports.
{
name: 'Mobile Chrome',
use: {
...devices['Pixel 5'],
},
},
// Mobile Safari is not supported on CI/Linux yet.
// {
// name: 'Mobile Safari',
// use: devices['iPhone 12'],
// },
],
};
export default config;