3bba0a4eea
This reverts commit c00232ca92
.
27 lines
564 B
JavaScript
27 lines
564 B
JavaScript
/* eslint-env node */
|
|
/* eslint-disable camelcase */
|
|
module.exports = {
|
|
framework: 'mocha',
|
|
test_page: 'tests/index.html?hidepassed',
|
|
disable_watching: true,
|
|
launch_in_ci: [
|
|
'Chrome',
|
|
'Firefox'
|
|
],
|
|
launch_in_dev: [
|
|
'Chrome',
|
|
'Firefox'
|
|
],
|
|
browser_args: {
|
|
Chrome: {
|
|
mode: 'ci',
|
|
args: [
|
|
'--disable-gpu',
|
|
'--headless',
|
|
'--remote-debugging-port=9222',
|
|
'--window-size=1440,900'
|
|
]
|
|
}
|
|
}
|
|
};
|