kibana/tasks/config/simplemocha.js

22 lines
427 B
JavaScript
Raw Normal View History

module.exports = {
options: {
2015-08-10 08:00:18 +02:00
timeout: 10000,
slow: 5000,
ignoreLeaks: false,
reporter: 'spec',
globals: ['nil']
},
2015-07-26 19:05:57 +02:00
all: {
src: [
[functionalTestRunner] replace intern (#10910) * [functional_test_runner] replace functional testing tools with custom/pluggable solution * [functional_test_runner] Convert unit tests to commonjs format * [functional_test_runner] Fix dashboard test in wrong mode * [functional_test_runner] Add dashboardLandingPage test subject * [functional_test_runner] Get Visualize page object * [functional_test_runner] Fix outdated references * [functional_test_runner] Fix more outdated refs * [functional_test_runner] Remove duplicate tests * [functional_test_runner] Improve test readability * [functional_test_runner] :disappointed: So many duplicate methods * [functional_test_runner] Move mgmt `before` outside toplevel describe * [functional_test_runner] Settings page obj missing methods * [functional_test_runner] Add improvements from @gammon * [functional_test_runner] Fix return statements in async funcs * [functional_test_runner] Move before() to correct scope * [functional_test_runner] Add after() hooks to remove index patterns * [functional_test_runner] Attempt to fix vertical bar chart tests * [functional_test_runner] Clean up * [functional_test_runner] Reinstate unit tests * [functional_test_runner] Set default loglevel back to info * [functional_test_runner] Replace `context`s with `describe`s * [functional_test_runner] Better error handling * [functional_test_runner] Add in new Tile Map tests * Incorporate changes from master * [functional_test_runner] validate that every test file has a single top-level suite * Update contributing doc with link to full doc * [docs] Spelling and grammar fixes * docs: writing and running functional tests * [docs] Move plugin doc to plugin area * [docs] Housekeeping. Doc in wrong place * [docs] Remove dup doc file * [grunt] Only run mocha_setup when running tests, not every grunt task
2017-04-12 00:01:06 +02:00
'test/mocha_setup.js',
'test/**/__tests__/**/*.js',
2015-07-26 19:05:57 +02:00
'src/**/__tests__/**/*.js',
'tasks/**/__tests__/**/*.js',
2015-10-14 22:20:14 +02:00
'test/fixtures/__tests__/*.js',
'!**/__tests__/fixtures/**/*',
'!src/**/public/**',
'!**/_*.js'
2015-07-26 19:05:57 +02:00
]
}
};