Skip to content

Commit

Permalink
[Security Solution] - fix Cypress not running locally (elastic#193622)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippeOberti authored Sep 23, 2024
1 parent fb9700c commit f6c5dd9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion x-pack/test/security_solution_cypress/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -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];

Expand Down

0 comments on commit f6c5dd9

Please sign in to comment.