From f6f5986376fd01a1643fcc15ba71df821eb75890 Mon Sep 17 00:00:00 2001 From: Ashokaditya <1849116+ashokaditya@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:41:35 +0200 Subject: [PATCH] [Security Solution][Endpoint] Unskip mocked response actions history cypress test (#161533) ## Summary Unskip test that was timing out at indexing test hosts. The timeout has since been increased in elastic/kibana/pull/159518 It was added in elastic/kibana/pull/157777 and skipped in elastic/kibana/pull/156933 thus should be backported to `8.8.1` and `8.9.0` --- .../cypress/e2e/mocked_data/reponse_actions_history.cy.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/reponse_actions_history.cy.ts b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/reponse_actions_history.cy.ts index 741164cc6d4338..cb6c7c3a96eeef 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/reponse_actions_history.cy.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/reponse_actions_history.cy.ts @@ -32,8 +32,7 @@ describe('Response actions history page', () => { } }); - // Flakey, example build failure: https://buildkite.com/elastic/kibana-pull-request/builds/132245 - it.skip('retains expanded action details on page reload', () => { + it('retains expanded action details on page reload', () => { loadPage(`/app/security/administration/response_actions_history`); cy.getByTestSubj('response-actions-list-expand-button').eq(3).click(); // 4th row on 1st page cy.getByTestSubj('response-actions-list-details-tray').should('exist');