mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
* [ftr] add first-class support for playwrite journeys * [CI] Auto-commit changed files from 'node scripts/generate codeowners' * fix jest test * remove ability to customize kibana server args, if we need it we can add it back * remove dev dir that doesn't exist * fix typo * prevent duplicated array converstion logic by sharing flag reader * remove destructuring of option * fix scalability config and config_path import * fix start_servers args and tests * include simple readme * fix jest tests and support build re-use when changes are just to jest tests Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
56 lines
1.6 KiB
TypeScript
56 lines
1.6 KiB
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
export { KbnClientRequesterError } from './src/kbn_client/kbn_client_requester_error';
|
|
|
|
// @internal
|
|
export { startServersCli, startServers } from './src/functional_tests/start_servers';
|
|
|
|
// @internal
|
|
export { runTestsCli, runTests } from './src/functional_tests/run_tests';
|
|
|
|
export { getKibanaCliArg, getKibanaCliLoggers } from './src/functional_tests/lib/kibana_cli_args';
|
|
|
|
export type {
|
|
CreateTestEsClusterOptions,
|
|
EsTestCluster,
|
|
ICluster,
|
|
EsClientForTestingOptions,
|
|
} from './src/es';
|
|
export {
|
|
esTestConfig,
|
|
createTestEsCluster,
|
|
createEsClientForTesting,
|
|
createEsClientForFtrConfig,
|
|
createRemoteEsClientForFtrConfig,
|
|
} from './src/es';
|
|
|
|
export {
|
|
kbnTestConfig,
|
|
kibanaServerTestUser,
|
|
kibanaTestUser,
|
|
adminTestUser,
|
|
systemIndicesSuperuser,
|
|
} from './src/kbn';
|
|
|
|
// @internal
|
|
export { setupJUnitReportGeneration, escapeCdata } from './src/mocha';
|
|
|
|
export { CI_PARALLEL_PROCESS_PREFIX } from './src/ci_parallel_process_prefix';
|
|
|
|
export * from './src/functional_test_runner';
|
|
|
|
export { getUrl } from './src/jest/get_url';
|
|
|
|
export { runCheckJestConfigsCli } from './src/jest/run_check_jest_configs_cli';
|
|
|
|
export { runJest } from './src/jest/run';
|
|
|
|
export * from './src/kbn_archiver_cli';
|
|
|
|
export * from './src/kbn_client';
|