Skip to content

Commit

Permalink
Merge branch 'main' into eui-v91.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen authored Dec 27, 2023
2 parents aa84895 + 66777f1 commit 2fe4fc1
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,10 @@ describe('Entity Analytics Dashboard', { tags: ['@ess', '@serverless'] }, () =>
it('renders alerts column', () => {
cy.get(HOSTS_TABLE_ALERT_CELL).should('have.length', 5);
});

it('filters by risk level', () => {
cy.get(HOSTS_TABLE).should('be.visible');
cy.get(HOSTS_TABLE_ROWS).should('have.length', 5);

openRiskTableFilterAndSelectTheLowOption();

cy.get(HOSTS_DONUT_CHART).should('include.text', '1Total');
Expand Down Expand Up @@ -225,8 +227,7 @@ describe('Entity Analytics Dashboard', { tags: ['@ess', '@serverless'] }, () =>
});
});

// FLAKY: https://github.com/elastic/kibana/issues/173846
describe.skip('With user risk data', () => {
describe('With user risk data', () => {
before(() => {
cy.task('esArchiverLoad', { archiveName: 'risk_users' });
});
Expand Down Expand Up @@ -254,6 +255,9 @@ describe('Entity Analytics Dashboard', { tags: ['@ess', '@serverless'] }, () =>
});

it('filters by risk level', () => {
cy.get(USERS_TABLE).should('be.visible');
cy.get(USERS_TABLE_ROWS).should('have.length', 5);

openRiskTableFilterAndSelectTheLowOption();

cy.get(USERS_DONUT_CHART).should('include.text', '2Total');
Expand Down

0 comments on commit 2fe4fc1

Please sign in to comment.