-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathplaywright.config.js
More file actions
39 lines (38 loc) · 923 Bytes
/
playwright.config.js
File metadata and controls
39 lines (38 loc) · 923 Bytes
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
import { defineConfig } from '@playwright/test';
export default defineConfig({
retries: 3,
reporter: [
['list'],
['github'],
],
use: {
viewport: {
width: 1600,
height: 800,
},
video: 'retain-on-failure',
trace: 'retain-on-failure',
},
projects: [
{
name: 'jira-cloud',
testDir: 'e2e/tests/jira',
testMatch: /jiraCloud\.spec\.ts/,
},
{
name: 'jira-dc',
testDir: 'e2e/tests/jira',
testMatch: /jiraDC\.spec\.ts/,
},
{
name: 'bitbucket-cloud',
testDir: 'e2e/tests/bitbucket',
testMatch: /bitbucketCloud\.spec\.ts/,
},
{
name: 'bitbucket-dc',
testDir: 'e2e/tests/bitbucket',
testMatch: /bitbucketDC\.spec\.ts/,
},
]
});