Skip to content

Commit

Permalink
[EDR Worklows] Fix and unskip packs_integration.cy.ts (#187276)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsonpl authored Jul 1, 2024
1 parent 3506e14 commit 955fb9c
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ import { cleanupPack, cleanupAgentPolicy } from '../../tasks/api_fixtures';
import { request } from '../../tasks/common';
import { ServerlessRoleName } from '../../support/roles';

// Failing: See https://github.com/elastic/kibana/issues/176543
describe.skip('ALL - Packs', { tags: ['@ess', '@serverless'] }, () => {
describe('ALL - Packs', { tags: ['@ess', '@serverless'] }, () => {
const integration = 'Osquery Manager';

describe(
Expand Down Expand Up @@ -162,6 +161,7 @@ describe.skip('ALL - Packs', { tags: ['@ess', '@serverless'] }, () => {
it('should be able to run live prebuilt pack', () => {
navigateTo('/app/osquery/live_queries');
cy.contains('New live query').click();
cy.getBySel('globalLoadingIndicator').should('not.exist');
cy.contains('Run a set of queries in a pack.').click();
cy.getBySel(LIVE_QUERY_EDITOR).should('not.exist');
cy.getBySel('globalLoadingIndicator').should('not.exist');
Expand Down Expand Up @@ -189,8 +189,7 @@ describe.skip('ALL - Packs', { tags: ['@ess', '@serverless'] }, () => {
navigateTo('/app/osquery/packs');
});

// FLAKY: https://github.com/elastic/kibana/issues/171279
describe.skip('add proper shard to policies packs config', () => {
describe('add proper shard to policies packs config', () => {
const globalPack = 'globalPack' + generateRandomStringName(1)[0];
const agentPolicy = 'testGlobal' + generateRandomStringName(1)[0];
let globalPackId: string;
Expand Down

0 comments on commit 955fb9c

Please sign in to comment.