mirror of
https://github.com/elastic/kibana.git
synced 2025-06-29 03:24:45 -04:00
Follow-up to https://github.com/elastic/kibana/pull/190830 ## Summary I noticed that the api integration tests that have been added with https://github.com/elastic/kibana/pull/190830 were not actually included to run as part of the Management test suite. This PR adds them and it also adds some test cases for the `ipinfo` database type.
19 lines
805 B
JavaScript
19 lines
805 B
JavaScript
/*
|
|
* 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.
|
|
*/
|
|
|
|
export default function ({ loadTestFile }) {
|
|
describe('management', () => {
|
|
loadTestFile(require.resolve('./advanced_settings'));
|
|
loadTestFile(require.resolve('./cross_cluster_replication'));
|
|
loadTestFile(require.resolve('./remote_clusters'));
|
|
loadTestFile(require.resolve('./rollup'));
|
|
loadTestFile(require.resolve('./index_management'));
|
|
loadTestFile(require.resolve('./index_lifecycle_management'));
|
|
loadTestFile(require.resolve('./snapshot_restore'));
|
|
loadTestFile(require.resolve('./ingest_pipelines'));
|
|
});
|
|
}
|