forked from DockYard/ember-router-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestem.js
40 lines (40 loc) · 964 Bytes
/
testem.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
/*jshint node:true*/
module.exports = {
"framework": "qunit",
"test_page": "tests/index.html?hidepassed&nolint",
"disable_watching": true,
"launch_in_ci": [
"PhantomJS"
],
"launch_in_dev": [
"PhantomJS",
"Chrome"
],
launch_in_ci: [
'Chrome Custom',
],
launch_in_dev: [
'Chrome Custom',
],
launchers: {
'Chrome Custom': {
exe: [
'google-chrome',
'~/Applications/Google Chrome.app/Contents/MacOS/Google Chrome',
'/Applications/Google Chrome.app/Contents/MacOS/Google Chrome',
],
args: [
'--user-data-dir=/tmp/testem.chrome.custom',
'--no-default-browser-check',
'--no-first-run',
'--ignore-certificate-errors',
'--test-type',
'--disable-extensions',
'--disable-web-security',
'--disable-renderer-backgrounding',
'--disable-background-timer-throttling',
],
protocol: 'browser',
},
},
};