mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 19:13:14 -04:00
closes https://github.com/elastic/kibana/issues/193992 How to open cypress dashboard locally: ``` node x-pack/plugins/observability_solution/inventory/scripts/test/e2e.js --open ``` How to run cypress tests: ``` node x-pack/plugins/observability_solution/inventory/scripts/test/e2e.js ``` How to run cypress tests multiple times: ``` node x-pack/plugins/observability_solution/inventory/scripts/test/e2e.js --server node x-pack/plugins/observability_solution/inventory/scripts/test/e2e.js --runner --times=X ``` --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
25 lines
1.5 KiB
TypeScript
25 lines
1.5 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", the "GNU Affero General Public License v3.0 only", 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", the "GNU Affero General Public
|
|
* License v3.0 only", or the "Server Side Public License, v 1".
|
|
*/
|
|
|
|
export { createLogger, LogLevel } from './src/lib/utils/create_logger';
|
|
|
|
export { ApmSynthtraceEsClient } from './src/lib/apm/client/apm_synthtrace_es_client';
|
|
export { ApmSynthtraceKibanaClient } from './src/lib/apm/client/apm_synthtrace_kibana_client';
|
|
export { InfraSynthtraceEsClient } from './src/lib/infra/infra_synthtrace_es_client';
|
|
export { InfraSynthtraceKibanaClient } from './src/lib/infra/infra_synthtrace_kibana_client';
|
|
export { MonitoringSynthtraceEsClient } from './src/lib/monitoring/monitoring_synthtrace_es_client';
|
|
export { LogsSynthtraceEsClient } from './src/lib/logs/logs_synthtrace_es_client';
|
|
export { EntitiesSynthtraceEsClient } from './src/lib/entities/entities_synthtrace_es_client';
|
|
export { EntitiesSynthtraceKibanaClient } from './src/lib/entities/entities_synthtrace_kibana_client';
|
|
export { SyntheticsSynthtraceEsClient } from './src/lib/synthetics/synthetics_synthtrace_es_client';
|
|
export { OtelSynthtraceEsClient } from './src/lib/otel/otel_synthtrace_es_client';
|
|
export {
|
|
addObserverVersionTransform,
|
|
deleteSummaryFieldTransform,
|
|
} from './src/lib/utils/transform_helpers';
|