From cb1af1b472c4500c3435c419a0287cc985e92230 Mon Sep 17 00:00:00 2001 From: Brian Seeders Date: Mon, 5 Oct 2020 14:30:49 -0400 Subject: [PATCH] Skip failing suite (#79522) (cherry picked from commit 9011f42d7ffa8b1ad690d2ef4aa03216bc4401b5) --- .../cypress/integration/alerts_detection_rules_eql.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/security_solution/cypress/integration/alerts_detection_rules_eql.spec.ts b/x-pack/plugins/security_solution/cypress/integration/alerts_detection_rules_eql.spec.ts index 087c91fda02b8..5745a545f048b 100644 --- a/x-pack/plugins/security_solution/cypress/integration/alerts_detection_rules_eql.spec.ts +++ b/x-pack/plugins/security_solution/cypress/integration/alerts_detection_rules_eql.spec.ts @@ -87,7 +87,8 @@ const expectedNumberOfRules = 1; const expectedNumberOfAlerts = 7; const expectedNumberOfSequenceAlerts = 1; -describe('Detection rules, EQL', () => { +// Failing: See https://github.com/elastic/kibana/issues/79522 +describe.skip('Detection rules, EQL', () => { beforeEach(() => { esArchiverLoad('timeline'); });