12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
test_page: 'tests/index.html?hidepassed',
|
|
disable_watching: true,
|
|
launch_in_ci: [
|
|
'PhantomJS'
|
|
],
|
|
launch_in_dev: [
|
|
'PhantomJS',
|
|
'Chrome'
|
|
]
|
|
};
|