diff --git a/x-pack/plugins/security_solution/cypress/integration/detection_rules/indicator_match_rule.spec.ts b/x-pack/plugins/security_solution/cypress/integration/detection_rules/indicator_match_rule.spec.ts index c4709d857d5d0..3d93ad96706e3 100644 --- a/x-pack/plugins/security_solution/cypress/integration/detection_rules/indicator_match_rule.spec.ts +++ b/x-pack/plugins/security_solution/cypress/integration/detection_rules/indicator_match_rule.spec.ts @@ -511,7 +511,7 @@ describe('indicator match', () => { cy.get(ALERT_RISK_SCORE).first().should('have.text', getNewThreatIndicatorRule().riskScore); }); - it.skip('Investigate alert in timeline', () => { + it('Investigate alert in timeline', () => { const accessibilityText = `Press enter for options, or press space to begin dragging.`; loadPrepackagedTimelineTemplates(); @@ -540,7 +540,8 @@ describe('indicator match', () => { getNewThreatIndicatorRule().indicatorMappingField }${accessibilityText}matched${getNewThreatIndicatorRule().indicatorMappingField}${ getNewThreatIndicatorRule().atomic - }${accessibilityText}threat.enrichments.matched.typeindicator_match_rule${accessibilityText}` + }${accessibilityText}threat.enrichments.matched.typeindicator_match_rule${accessibilityText}provided` + + ` byfeed.nameAbuseCH malware${accessibilityText}` ); }); }); diff --git a/x-pack/plugins/security_solution/cypress/integration/timelines/fields_browser.spec.ts b/x-pack/plugins/security_solution/cypress/integration/timelines/fields_browser.spec.ts index 0a5db030f1dca..df194136c6bb2 100644 --- a/x-pack/plugins/security_solution/cypress/integration/timelines/fields_browser.spec.ts +++ b/x-pack/plugins/security_solution/cypress/integration/timelines/fields_browser.spec.ts @@ -104,12 +104,12 @@ describe('Fields Browser', () => { }); }); - it.skip('displays a count of only the fields in the selected category that match the filter input', () => { + it('displays a count of only the fields in the selected category that match the filter input', () => { const filterInput = 'host.geo.c'; filterFieldsBrowser(filterInput); - cy.get(FIELDS_BROWSER_SELECTED_CATEGORY_COUNT).should('have.text', '5'); + cy.get(FIELDS_BROWSER_SELECTED_CATEGORY_COUNT).should('have.text', '4'); }); });