kibana/x-pack/test/licensing_plugin/config.ts
Spencer 808b44f2c1
[kbn/test] move types/ftr into src (#99555)
* [kbn/test] move types/ftr into src

* Apply eslint updates

* fix import of Lifecycle type

Co-authored-by: spalger <spalger@users.noreply.github.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-05-17 09:51:53 -07:00

57 lines
1.5 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
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { FtrConfigProviderContext } from '@kbn/test';
import { services, pageObjects } from './services';
const license = 'basic';
export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const functionalTestsConfig = await readConfigFile(require.resolve('../functional/config.js'));
const servers = {
...functionalTestsConfig.get('servers'),
elasticsearch: {
...functionalTestsConfig.get('servers.elasticsearch'),
},
kibana: {
...functionalTestsConfig.get('servers.kibana'),
},
};
return {
testFiles: [require.resolve('./server')],
servers,
services,
pageObjects,
junit: {
reportName: 'License plugin API Integration Tests',
},
esTestCluster: {
...functionalTestsConfig.get('esTestCluster'),
license,
serverArgs: [
...functionalTestsConfig.get('esTestCluster.serverArgs'),
'xpack.security.enabled=true',
],
},
kbnTestServer: {
...functionalTestsConfig.get('kbnTestServer'),
serverArgs: [
...functionalTestsConfig.get('kbnTestServer.serverArgs'),
'--xpack.licensing.api_polling_frequency=100',
],
},
apps: {
...functionalTestsConfig.get('apps'),
},
};
}