kibana/x-pack/test/api_integration/apis/aiops/config.ts
Robert Oskamp 499c37968d
[ML] Update plugin readme files and test report names (#151729)
This PR updates the ML and Transform plugin `readme.md` files as well as
the API integration junit report names for ML, Transform and AIOps after
recent test config splits.
2023-02-24 09:59:59 +01:00

20 lines
663 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 { FtrConfigProviderContext } from '@kbn/test';
export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseIntegrationTestsConfig = await readConfigFile(require.resolve('../../config.ts'));
return {
...baseIntegrationTestsConfig.getAll(),
testFiles: [require.resolve('.')],
junit: {
reportName: 'X-Pack API Integration Tests - aiops',
},
};
}