From 87fd6415c8130fdb1485d46e4a55e5c9c4febb8b Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Sat, 1 Feb 2025 13:08:52 +1100 Subject: [PATCH] [8.x] chore(NA): skip x-pack/solutions/security/plugins/security_solution/public/management cypress e2e tests (#209160) (#209200) # Backport This will backport the following commits from `main` to `8.x`: - [chore(NA): skip x-pack/solutions/security/plugins/security_solution/public/management cypress e2e tests (#209160)](https://github.com/elastic/kibana/pull/209160) ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) \r\n\r\n### Questions ?\r\nPlease refer to the [Backport tool\r\ndocumentation](https://github.com/sqren/backport)\r\n\r\n\r\n\r\nCo-authored-by: Tiago Costa "}},{"branch":"main","label":"v9.1.0","branchLabelMappingKey":"^v9.1.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/209160","number":209160,"mergeCommit":{"message":"chore(NA): skip x-pack/solutions/security/plugins/security_solution/public/management cypress e2e tests (#209160)\n\nThis PR skips Defend Workflows test suites to unblock main.","sha":"48a69daccfe341106e70e00ce80fc98b780f3d80"}},{"branch":"8.x","label":"v8.19.0","branchLabelMappingKey":"^v8.19.0$","isSourceBranch":false,"state":"NOT_CREATED"}]}] BACKPORT--> Co-authored-by: Tiago Costa --- .../public/management/cypress/cypress_base.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/cypress/cypress_base.config.ts b/x-pack/solutions/security/plugins/security_solution/public/management/cypress/cypress_base.config.ts index 0b64db4c29801..1618ac22c84df 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/cypress/cypress_base.config.ts +++ b/x-pack/solutions/security/plugins/security_solution/public/management/cypress/cypress_base.config.ts @@ -77,7 +77,8 @@ export const getCypressBaseConfig = ( // baseUrl: To override, set Env. variable `CYPRESS_BASE_URL` baseUrl: 'http://localhost:5601', supportFile: 'public/management/cypress/support/e2e.ts', - specPattern: 'public/management/cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', + specPattern: 'public/management/cypress/e2e/serverless/*.cy.{js,jsx,ts,tsx}', + // specPattern: 'public/management/cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', experimentalRunAllSpecs: true, experimentalMemoryManagement: true, experimentalInteractiveRunEvents: true,