-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathplaywright.config.js
102 lines (101 loc) · 3.99 KB
/
playwright.config.js
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* global process */
import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
projects: [
{
name: 'windows',
testMatch: [
'integration-test/duckplayer.spec.js',
'integration-test/duckplayer-remote-config.spec.js',
'integration-test/harmful-apis.spec.js',
'integration-test/windows-permissions.spec.js',
'integration-test/broker-protection.spec.js',
'integration-test/breakage-reporting.spec.js',
],
use: { injectName: 'windows', platform: 'windows' },
},
{
name: 'apple-isolated',
testMatch: [
'integration-test/duckplayer.spec.js',
'integration-test/duckplayer-remote-config.spec.js',
'integration-test/broker-protection.spec.js',
],
use: { injectName: 'apple-isolated', platform: 'macos' },
},
{
name: 'apple',
// prettier-ignore
testMatch: [
'integration-test/webcompat.spec.js',
'integration-test/message-bridge-apple.spec.js'
],
use: { injectName: 'apple', platform: 'macos' },
},
{
name: 'ios',
testMatch: ['integration-test/duckplayer-mobile.spec.js'],
use: { injectName: 'apple-isolated', platform: 'ios', ...devices['iPhone 13'] },
},
{
name: 'android',
testMatch: ['integration-test/duckplayer-mobile.spec.js', 'integration-test/web-compat-android.spec.js'],
use: { injectName: 'android', platform: 'android', ...devices['Galaxy S5'] },
},
{
name: 'android-autofill-password-import',
testMatch: ['integration-test/autofill-password-import.spec.js'],
use: { injectName: 'android-autofill-password-import', platform: 'android', ...devices['Galaxy S5'] },
},
{
name: 'chrome',
testMatch: [
'integration-test/remote-pages.spec.js',
'integration-test/cookie.spec.js',
'integration-test/fingerprint.spec.js',
'integration-test/navigator-interface.spec.js',
'integration-test/pages.spec.js',
'integration-test/utils.spec.js',
'integration-test/web-compat.spec.js',
],
use: { injectName: 'chrome', platform: 'extension', ...devices['Desktop Chrome'] },
},
{
name: 'firefox',
testMatch: 'integration-test/remote-pages.spec.js',
use: { injectName: 'firefox', platform: 'extension', ...devices['Desktop Firefox'] },
},
],
timeout: 30 * 1000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* For example in `await expect(locator).toHaveText();`
*/
timeout: 5000,
},
/* Run tests in files in parallel */
fullyParallel: !process.env.CI,
/* Don't allow `.only` in CI */
forbidOnly: Boolean(process.env.CI),
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
reporter: process.env.CI ? 'github' : [['html', { open: 'never' }]],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
webServer: {
reuseExistingServer: true,
ignoreHTTPSErrors: true,
command: 'npm run serve',
port: 3220,
},
use: {
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
actionTimeout: 1000,
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: 'http://localhost:3220/',
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',
},
});