[Security Solution] - fix Cypress not running locally (#193622)

This commit is contained in:
Philippe Oberti 2024-09-23 21:22:11 +02:00 committed by GitHub
parent fb9700caa0
commit f6c5dd99c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,6 +7,7 @@
import Url from 'url';
import { createEsClientForFtrConfig } from '@kbn/test';
import { TransportResult } from '@elastic/elasticsearch';
import { FtrProviderContext } from '../common/ftr_provider_context';
import { tiAbusechMalware } from './pipelines/ti_abusech_malware';
@ -20,7 +21,7 @@ export async function SecuritySolutionConfigurableCypressTestRunner({
}: FtrProviderContext) {
const log = getService('log');
const config = getService('config');
const es = getService('es');
const es = createEsClientForFtrConfig(config);
const pipelines = [tiAbusechMalware, tiAbusechMalwareBazaar, tiAbusechUrl];