-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathtestem.js
More file actions
31 lines (31 loc) · 729 Bytes
/
testem.js
File metadata and controls
31 lines (31 loc) · 729 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
27
28
29
30
31
module.exports = {
framework: 'qunit',
src_files: [
'node_modules/heimdalljs/dist/heimdalljs.iife.js',
'lib/loader/loader.js',
'tests/all.js'
],
before_tests: './build.js',
test_page: 'tests/index.html?hidepassed',
launch_in_dev: [
'Chrome'
],
launch_in_ci: [
'Chrome'
],
browser_args: {
Chrome: {
ci: [
// --no-sandbox is needed when running Chrome inside a container
process.env.CI ? '--no-sandbox' : null,
'--headless',
'--disable-gpu',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900'
].filter(Boolean)
}
}
};