Skip to content

Commit

Permalink
Add back severity and riskScore assertions for EQL alerts (#122954)
Browse files Browse the repository at this point in the history
  • Loading branch information
madirey authored Jan 15, 2022
1 parent 3891ab8 commit b95cbeb
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ describe('Detection rules, EQL', () => {
.invoke('text')
.then((text) => {
expect(text).contains(this.rule.name);
expect(text).contains(this.rule.severity.toLowerCase());
expect(text).contains(this.rule.riskScore);
});
});
});
Expand Down

0 comments on commit b95cbeb

Please sign in to comment.