mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Security solution] Skip flaky explore tests (#161898)
This commit is contained in:
parent
28e2d6dc70
commit
5b3060f763
2 changed files with 6 additions and 3 deletions
|
@ -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');
|
||||
|
@ -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');
|
||||
});
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue