kibana/x-pack/test/api_integration/apis/management/index.js
Elena Stoeva 727c19a78b
[Ingest Pipelines] Improve api integration tests (#196718)
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.
2024-10-17 12:40:21 -05:00

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'));
});
}