Skip to content

Commit

Permalink
skip flaky explore tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephmilovic committed Jul 13, 2023
1 parent 11cf01e commit 5f083db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ describe('Entity Analytics Dashboard', () => {
cy.get(HOSTS_TABLE_ALERT_CELL).should('have.length', 5);
});

it('filters by risk classification', () => {
// tracked by https://github.com/elastic/kibana/issues/161874
it.skip('filters by risk classification', () => {
openRiskTableFilterAndSelectTheLowOption();

cy.get(HOSTS_DONUT_CHART).should('include.text', '1Total');
Expand Down Expand Up @@ -299,7 +300,8 @@ describe('Entity Analytics Dashboard', () => {
});
});

describe('With anomalies data', () => {
// tracked by https://github.com/elastic/kibana/issues/161874
describe.skip('With anomalies data', () => {
before(() => {
esArchiverLoad('network');
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ import { esArchiverLoad, esArchiverUnload } from '../../../tasks/es_archiver';

const testDomain = 'myTest';

describe('Hover actions', () => {
// tracked by https://github.com/elastic/kibana/issues/161874
describe.skip('Hover actions', () => {
const onBeforeLoadCallback = (win: Cypress.AUTWindow) => {
// avoid cypress being held by windows prompt and timeout
cy.stub(win, 'prompt').returns(true);
Expand Down

0 comments on commit 5f083db

Please sign in to comment.