mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
19 lines
339 B
JavaScript
19 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/**'
|
|
]
|
|
}
|
|
};
|