19 lines
334 B
JavaScript
19 lines
334 B
JavaScript
|
module.exports = function(config) {
|
||
|
config.set({
|
||
|
browsers: ['ChromeHeadless'],
|
||
|
singleRun: true,
|
||
|
basePath: '',
|
||
|
files: ['tests/dist/index.js'],
|
||
|
|
||
|
frameworks: ['mocha', 'chai'],
|
||
|
reporters: ['mocha'],
|
||
|
client: {
|
||
|
mocha: {
|
||
|
ui: 'bdd',
|
||
|
timeout: 5000,
|
||
|
slow: 250
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
};
|