[8.9] [Security Solution] Skip flaky tests (#160981)

## Summary

Skip failing tests. 

Issue to unskip: https://github.com/elastic/kibana/issues/160980
This commit is contained in:
Dmitrii Shevchenko 2023-06-30 15:29:34 +02:00 committed by GitHub
parent 812b679467
commit 3ff0172146
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 5 deletions

View file

@ -313,7 +313,8 @@ describe('Entity Analytics Dashboard', () => {
visit(ENTITY_ANALYTICS_URL);
});
it('renders table with pagination', () => {
// TODO https://github.com/elastic/kibana/issues/160980
it.skip('renders table with pagination', () => {
cy.get(ANOMALIES_TABLE).should('be.visible');
cy.get(ANOMALIES_TABLE_ROWS).should('have.length', 10);

View file

@ -133,7 +133,8 @@ describe('Detections : Page Filters', () => {
resetFilters();
});
it('should be able to delete Controls', () => {
// TODO https://github.com/elastic/kibana/issues/160980
it.skip('should be able to delete Controls', () => {
waitForPageFilters();
editFilterGroupControls();
deleteFilterGroupControl(3);
@ -231,7 +232,8 @@ describe('Detections : Page Filters', () => {
cy.get(FILTER_GROUP_CHANGED_BANNER).should('be.visible');
});
it(`Alert list is updated when the alerts are updated`, () => {
// TODO https://github.com/elastic/kibana/issues/160980
it.skip(`Alert list is updated when the alerts are updated`, () => {
// mark status of one alert to be acknowledged
selectCountTable();
cy.get(ALERTS_COUNT)
@ -331,7 +333,9 @@ describe('Detections : Page Filters', () => {
afterEach(() => {
resetFilters();
});
it('should recover from invalide kql Query result', () => {
// TODO https://github.com/elastic/kibana/issues/160980
it.skip('should recover from invalide kql Query result', () => {
// do an invalid search
//
kqlSearch('\\');

View file

@ -137,7 +137,8 @@ describe('Detection response view', () => {
});
});
});
it(`opens timeline with correct query count for open alerts by rule table`, () => {
// TODO https://github.com/elastic/kibana/issues/160980
it.skip(`opens timeline with correct query count for open alerts by rule table`, () => {
cy.get(RULE_TABLE_ROW_TOTAL_ALERTS)
.first()
.then((sub) => {