kibana/tasks/config/simplemocha.js

20 lines
339 B
JavaScript
Raw Normal View History

require('../../test/mocha_setup');
module.exports = {
options: {
2015-08-10 08:00:18 +02:00
timeout: 10000,
slow: 5000,
ignoreLeaks: false,
reporter: 'dot'
},
2015-07-26 19:05:57 +02:00
all: {
src: [
'test/**/__tests__/**/*.js',
2015-07-26 19:05:57 +02:00
'src/**/__tests__/**/*.js',
2015-10-14 22:20:14 +02:00
'test/fixtures/__tests__/*.js',
2015-07-26 19:05:57 +02:00
'!src/**/public/**',
'!src/ui/**'
]
}
};