-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtestem-electron.js
More file actions
26 lines (26 loc) · 797 Bytes
/
Copy pathtestem-electron.js
File metadata and controls
26 lines (26 loc) · 797 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
/* eslint-env node */
module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
launchers: {
Electron: require('ember-electron/lib/test-runner'),
},
launch_in_ci: ['Electron'],
launch_in_dev: ['Electron'],
browser_args: {
Electron: {
// Note: Some these Chrome options may not be supported in Electron
// See https://electronjs.org/docs/api/chrome-command-line-switches
ci: [
// --no-sandbox is needed when running Chrome inside a container
process.env.CI ? '--no-sandbox' : null,
'--headless',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900',
].filter(Boolean),
},
},
};