From d522ad1d9de60d7e9c9a88801b655bd9b55fd7d8 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` (cherry picked from commit f6f5986376fd01a1643fcc15ba71df821eb75890) # Conflicts: # x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/reponse_actions_history.cy.ts --- .../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 b829e6e21c5859..a93562cd57785e 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 @@ -31,8 +31,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', () => { cy.visit(`/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');