mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[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:
parent
812b679467
commit
3ff0172146
3 changed files with 11 additions and 5 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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('\\');
|
||||
|
|
|
@ -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) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue