forked from typed-ember/ember-cli-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestem.js
More file actions
24 lines (24 loc) · 654 Bytes
/
testem.js
File metadata and controls
24 lines (24 loc) · 654 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
module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
launch_in_ci: ['Chrome'],
launch_in_dev: ['Chrome'],
browser_args: {
Chrome: {
mode: 'ci',
// prettier-disable -- args are useful to have in a sane order
args: [
'--disable-gpu',
'--headless',
'--remote-debugging-port=0',
'--window-size=1440,900',
].concat(
/*
--no-sandbox is needed when running Chrome inside a container.
See https://github.com/ember-cli/ember-cli-chai/pull/45/files.
*/
process.env.TRAVIS ? '--no-sandbox' : []
),
},
},
};