-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv-options.cjs
More file actions
67 lines (67 loc) · 1.92 KB
/
Copy pathenv-options.cjs
File metadata and controls
67 lines (67 loc) · 1.92 KB
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
/**
* @type {Array<import('./env-options').EnvironmentOptions>}
*/
module.exports = [
{
environmentName: 'github-actions',
launch: {
args: [
'--disable-features=IsolateOrigins',
'--disable-site-isolation-trials',
'--autoplay-policy=user-gesture-required',
'--disable-background-networking',
'--disable-background-timer-throttling',
'--disable-backgrounding-occluded-windows',
'--disable-breakpad',
'--disable-client-side-phishing-detection',
'--disable-component-update',
'--disable-default-apps',
'--disable-dev-shm-usage',
'--disable-domain-reliability',
'--disable-extensions',
'--disable-features=AudioServiceOutOfProcess',
'--disable-hang-monitor',
'--disable-ipc-flooding-protection',
'--disable-notifications',
'--disable-offer-store-unmasked-wallet-cards',
'--disable-popup-blocking',
'--disable-print-preview',
'--disable-prompt-on-repost',
'--disable-renderer-backgrounding',
'--disable-setuid-sandbox',
'--disable-speech-api',
'--disable-sync',
'--disable-gpu',
'--hide-scrollbars',
'--ignore-gpu-blacklist',
'--metrics-recording-only',
'--mute-audio',
'--no-default-browser-check',
'--no-first-run',
'--no-pings',
'--no-sandbox',
'--no-zygote',
'--password-store=basic',
'--use-gl=swiftshader',
'--use-mock-keychain',
'--unlimited-storage',
'--enable-logging',
'--v=2',
],
headless: false,
},
test: () => typeof process.env.CI !== 'undefined',
beforeAll: async () => {},
timeout: 800000,
},
{
environmentName: 'default',
launch: {
headless: 'new',
args: ['--no-sandbox'],
},
test: () => true,
beforeAll: async () => {},
timeout: 120000,
},
];