forked from ahmadsoe/ember-highcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testem.js
36 lines (34 loc) · 1020 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
/* eslint-env node */
'use strict';
module.exports = {
framework: 'qunit',
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
parallel: -1,
launch_in_ci: [
'Chrome'
],
launch_in_dev: [
'Chrome'
],
browser_args: {
Chrome: {
ci: [
process.env.TRAVIS ? '--no-sandbox' : null, // --no-sandbox is needed when running Chrome inside a container
'--headless',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900',
'--enable-logging',
'--v=1',
'--enable-crash-reporting',
'--crash-dumps-dir=build/outputs/chrome_crash_dumps',
// Chrome 66+ introduces a policy that requires user interaction before autoplay is allowed
// this flag disables that policy and allows autoplay regardless of user interaction
'--autoplay-policy=no-user-gesture-required',
].filter(Boolean),
}
}
};