mirror of
https://github.com/elastic/kibana.git
synced 2025-06-29 03:24:45 -04:00
## Summary Part of https://github.com/elastic/kibana/issues/148303 Port kibana api tests to the [monitoring_api_integration](https://github.com/elastic/kibana/tree/main/x-pack/test/monitoring_api_integration) suite. This reimplements all the existing tests with fresh data. See [flaky test run](https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2002)
19 lines
755 B
TypeScript
19 lines
755 B
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; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
import { FtrProviderContext } from '../../api_integration/ftr_provider_context';
|
|
|
|
export default function ({ loadTestFile }: FtrProviderContext) {
|
|
describe('Monitoring Endpoints', function () {
|
|
loadTestFile(require.resolve('./apm'));
|
|
loadTestFile(require.resolve('./beats'));
|
|
loadTestFile(require.resolve('./elasticsearch'));
|
|
loadTestFile(require.resolve('./enterprisesearch'));
|
|
loadTestFile(require.resolve('./kibana'));
|
|
loadTestFile(require.resolve('./logstash'));
|
|
});
|
|
}
|