Skip to content

Commit

Permalink
[EDR Workflows] Fix skipped timelines.cy.ts test (elastic#187374)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsonpl authored Jul 3, 2024
1 parent 935d446 commit 93e127e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions x-pack/plugins/osquery/cypress/e2e/all/timelines.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { initializeDataViews } from '../../tasks/login';
import { takeOsqueryActionWithParams } from '../../tasks/live_query';
import { ServerlessRoleName } from '../../support/roles';

describe.skip('ALL - Timelines', { tags: ['@ess'] }, () => {
describe('ALL - Timelines', { tags: ['@ess'] }, () => {
before(() => {
initializeDataViews();
});
Expand All @@ -22,7 +22,9 @@ describe.skip('ALL - Timelines', { tags: ['@ess'] }, () => {
cy.getBySel('timeline-bottom-bar').within(() => {
cy.getBySel('timeline-bottom-bar-title-button').click();
});
cy.getBySel('timelineQueryInput').type('NOT host.name: "dev-fleet-server.8220"{enter}');
cy.getBySel('timelineQueryInput').type(
'NOT host.name: "dev-fleet-server*" and component.type: "osquery"{enter}'
);
// Filter out alerts
cy.getBySel('timeline-sourcerer-trigger').click();
cy.getBySel('sourcerer-advanced-options-toggle').click();
Expand Down

0 comments on commit 93e127e

Please sign in to comment.