From 1e9282f21ac1b14493edeb0b8d217be3aea7f1ab Mon Sep 17 00:00:00 2001 From: Kevin Logan <56395104+kevinlog@users.noreply.github.com> Date: Tue, 22 Aug 2023 17:03:59 -0400 Subject: [PATCH] [Security Solution] Re-enable file operations tests (#164315) ## Summary Re-enable tests after this bug was fixed: https://github.com/elastic/kibana/issues/162760 ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../management/cypress/e2e/endpoint/response_console.cy.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/response_console.cy.ts b/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/response_console.cy.ts index d2ea69dca1618..245de3ce5512c 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/response_console.cy.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/response_console.cy.ts @@ -188,8 +188,7 @@ describe('Response console', () => { }); }); - // Broken until this is fixed: https://github.com/elastic/kibana/issues/162760 - describe.skip('File operations: get-file and execute', () => { + describe('File operations: get-file and execute', () => { const homeFilePath = process.env.CI || true ? '/home/vagrant' : `/home/ubuntu`; const fileContent = 'This is a test file for the get-file command.';