forked from CenterForOpenScience/ember-osf-preprints
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestem.js
More file actions
29 lines (27 loc) · 610 Bytes
/
testem.js
File metadata and controls
29 lines (27 loc) · 610 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
/* eslint-env node */
const DotReporter = require('testem/lib/reporters/dot_reporter');
module.exports = {
framework: 'qunit',
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
reporter: new DotReporter(),
launch_in_ci: [
'Chrome',
'Firefox',
],
launch_in_dev: [
'Chrome',
'Firefox',
],
browser_args: {
Chrome: [
'--headless',
'--disable-gpu',
'--remote-debugging-port=9222',
'--no-sandbox',
],
Firefox: [
'-headless',
],
},
};