mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 03:01:21 -04:00
38 lines
1 KiB
TypeScript
38 lines
1 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;
|
|
* you may not use this file except in compliance with the Elastic License.
|
|
*/
|
|
|
|
import { FtrConfigProviderContext } from '@kbn/test/types/ftr';
|
|
|
|
interface Settings {
|
|
license: 'basic' | 'trial';
|
|
testFiles: string[];
|
|
name: string;
|
|
}
|
|
|
|
export function createTestConfig(settings: Settings) {
|
|
const { testFiles, license, name } = settings;
|
|
|
|
return async ({ readConfigFile }: FtrConfigProviderContext) => {
|
|
const xPackAPITestsConfig = await readConfigFile(
|
|
require.resolve('../../api_integration/config.ts')
|
|
);
|
|
|
|
return {
|
|
testFiles,
|
|
servers: xPackAPITestsConfig.get('servers'),
|
|
services: xPackAPITestsConfig.get('services'),
|
|
junit: {
|
|
reportName: name,
|
|
},
|
|
|
|
esTestCluster: {
|
|
...xPackAPITestsConfig.get('esTestCluster'),
|
|
license,
|
|
},
|
|
kbnTestServer: xPackAPITestsConfig.get('kbnTestServer'),
|
|
};
|
|
};
|
|
}
|