e74e2e039e
no issue - switch `jscs` and `jshint` inline config to `eslint` config - fix eslint errors, predominantly in tests where the config now the main app config more closely
15 lines
278 B
JavaScript
15 lines
278 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
'framework': 'mocha',
|
|
'test_page': 'tests/index.html?hidepassed',
|
|
'disable_watching': true,
|
|
'launch_in_ci': [
|
|
'Chrome',
|
|
'Firefox'
|
|
],
|
|
'launch_in_dev': [
|
|
'Chrome',
|
|
'Firefox'
|
|
]
|
|
};
|