kibana/tasks/config/simplemocha.js

20 lines
339 B
JavaScript

require('../../test/mocha_setup');
module.exports = {
options: {
timeout: 10000,
slow: 5000,
ignoreLeaks: false,
reporter: 'dot'
},
all: {
src: [
'test/**/__tests__/**/*.js',
'src/**/__tests__/**/*.js',
'test/fixtures/__tests__/*.js',
'!src/**/public/**',
'!src/ui/**'
]
}
};