15 lines
277 B
JavaScript
15 lines
277 B
JavaScript
|
/*jshint node:true*/
|
||
|
module.exports = {
|
||
|
'framework': 'mocha',
|
||
|
'test_page': 'tests/index.html?hidepassed',
|
||
|
'disable_watching': true,
|
||
|
'launch_in_ci': [
|
||
|
'Chrome',
|
||
|
'Firefox'
|
||
|
],
|
||
|
'launch_in_dev': [
|
||
|
'Chrome',
|
||
|
'Firefox'
|
||
|
]
|
||
|
};
|