Skip to content

Commit

Permalink
[Security Solution] - skipping failing sourcerer Cypress test failing…
Browse files Browse the repository at this point in the history
… on main (elastic#199030)

## Summary

This PR skips 2 tests failing on `main` at the moment:
-
elastic#198944 (comment)
-
elastic#198943 (comment)
  • Loading branch information
PhilippeOberti authored and mgadewoll committed Nov 7, 2024
1 parent 3117e87 commit 28b7562
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ describe.skip('Timeline scope', { tags: ['@ess', '@serverless', '@skipInServerle
});

describe('Modified badge', () => {
it('Selecting new data view does not add a modified badge', () => {
// failing on main multiple times https://github.com/elastic/kibana/issues/198944#issuecomment-2457665138 and https://github.com/elastic/kibana/issues/198943#issuecomment-2457665072
it.skip('Selecting new data view does not add a modified badge', () => {
openTimelineUsingToggle();
cy.get(SOURCERER.badgeModified).should(`not.exist`);
openSourcerer('timeline');
Expand Down Expand Up @@ -134,7 +135,8 @@ describe.skip('Timeline scope', { tags: ['@ess', '@serverless', '@skipInServerle
});

const defaultPatterns = [`auditbeat-*`, `${DEFAULT_ALERTS_INDEX}-default`];
it('alerts checkbox behaves as expected', () => {
// failing on main multiple times https://github.com/elastic/kibana/issues/198944#issuecomment-2457665138 and https://github.com/elastic/kibana/issues/198943#issuecomment-2457665072
it.skip('alerts checkbox behaves as expected', () => {
isDataViewSelection(siemDataViewTitle);
defaultPatterns.forEach((pattern) => isSourcererSelection(pattern));
openDataViewSelection();
Expand Down

0 comments on commit 28b7562

Please sign in to comment.