mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
17 lines
303 B
JavaScript
17 lines
303 B
JavaScript
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/**'
|
|
]
|
|
}
|
|
};
|