Functional test setup with kbn-test package (#18568)

Restructure testing with kbn-test package

 - Run with multiple configs, move cli options to config
 - Package-ify kbn-test
 - Eventually we'll have functional_test_runner live in a package
of its own, and then this kbn-test will use that as a dependency,
probably still as a devDependency.
 - Implement functional_tests_server
 - Collapse single and multiple config apis into one command

Use kbn-es

Replace es_test_cluster + es_test_config with kbn/test utils

Implement new createEsTestCluster

Improve scripts, jsdocs, cli top-level tools

Lift error handling to the top level
This commit is contained in:
archana 2018-05-09 18:23:49 -05:00 committed by GitHub
parent 2f0b4209c4
commit b58e757794
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
65 changed files with 2688 additions and 684 deletions

View file

@ -0,0 +1,5 @@
require('../src/babel-register');
require('../packages/kbn-test').runTestsCli([
require.resolve('../test/functional/config.js'),
require.resolve('../test/api_integration/config.js'),
]);