We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9efdb56 commit 73bffb3Copy full SHA for 73bffb3
x-pack/test/saved_objects_field_count/config.ts
@@ -25,7 +25,14 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
25
26
kbnTestServer: {
27
...kibanaCommonTestsConfig.get('kbnTestServer'),
28
- serverArgs: [...kibanaCommonTestsConfig.get('kbnTestServer.serverArgs')],
+ serverArgs: [
29
+ ...kibanaCommonTestsConfig.get('kbnTestServer.serverArgs'),
30
+ // Enable plugins that are disabled by default to include their metrics
31
+ // TODO: Find a way to automatically enable all discovered plugins
32
+ '--xpack.ingestManager.enabled=true',
33
+ '--xpack.lists.enabled=true',
34
+ '--xpack.securitySolution.enabled=true',
35
+ ],
36
},
37
};
38
}
0 commit comments