mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Security Solution] Skip flaky cases cypress tests (#161309)
## Summary Skips flaky cypress tests to unblock PRs. These tests are determined to be flaky as they are failing in two unrelated PRs. https://github.com/elastic/kibana/pull/160912 https://github.com/elastic/kibana/pull/160813 ### 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>
This commit is contained in:
parent
8de68afb40
commit
44449c5246
2 changed files with 4 additions and 2 deletions
|
@ -189,7 +189,8 @@ describe('Isolate command', () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe('from Cases', () => {
|
||||
// Flaky: https://github.com/elastic/security-team/issues/7048
|
||||
describe.skip('from Cases', () => {
|
||||
let endpointData: ReturnTypeFromChainable<typeof indexEndpointHosts> | undefined;
|
||||
let caseData: ReturnTypeFromChainable<typeof indexNewCase> | undefined;
|
||||
let alertData: ReturnTypeFromChainable<typeof indexEndpointRuleAlerts> | undefined;
|
||||
|
|
|
@ -38,7 +38,8 @@ describe('When accessing Endpoint Response Console', () => {
|
|||
login();
|
||||
});
|
||||
|
||||
describe('from Cases', () => {
|
||||
// Flaky: https://github.com/elastic/security-team/issues/7048
|
||||
describe.skip('from Cases', () => {
|
||||
let endpointData: ReturnTypeFromChainable<typeof indexEndpointHosts>;
|
||||
let caseData: ReturnTypeFromChainable<typeof indexNewCase>;
|
||||
let alertData: ReturnTypeFromChainable<typeof indexEndpointRuleAlerts>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue