Skip to content

Commit

Permalink
Fixing type check
Browse files Browse the repository at this point in the history
  • Loading branch information
doakalexi committed Mar 25, 2024
1 parent 48457f2 commit 7613c22
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,7 @@ describe('Log threshold executor', () => {
setAlertLimitReached: jest.fn(),
getRecoveredAlerts: jest.fn(),
setAlertData: jest.fn(),
isTrackedAlert: jest.fn(),
};

const ruleParams = {
Expand Down Expand Up @@ -482,6 +483,7 @@ describe('Log threshold executor', () => {
setAlertLimitReached: jest.fn(),
getRecoveredAlerts: jest.fn(),
setAlertData: jest.fn(),
isTrackedAlert: jest.fn(),
};

const ruleParams = {
Expand Down Expand Up @@ -510,6 +512,7 @@ describe('Log threshold executor', () => {
setAlertLimitReached: jest.fn(),
getRecoveredAlerts: jest.fn(),
setAlertData: jest.fn(),
isTrackedAlert: jest.fn(),
};

const ruleParams = {
Expand Down Expand Up @@ -538,6 +541,7 @@ describe('Log threshold executor', () => {
setAlertLimitReached: jest.fn(),
getRecoveredAlerts: jest.fn(),
setAlertData: jest.fn(),
isTrackedAlert: jest.fn(),
};

const ruleParams = {
Expand Down Expand Up @@ -568,6 +572,7 @@ describe('Log threshold executor', () => {
setAlertLimitReached: jest.fn(),
getRecoveredAlerts: jest.fn(),
setAlertData: jest.fn(),
isTrackedAlert: jest.fn(),
};

const ruleParams = {
Expand Down Expand Up @@ -706,6 +711,7 @@ describe('Log threshold executor', () => {
setAlertLimitReached: jest.fn(),
getRecoveredAlerts: jest.fn(),
setAlertData: jest.fn(),
isTrackedAlert: jest.fn(),
};

const ruleParams = {
Expand Down Expand Up @@ -794,6 +800,7 @@ describe('Log threshold executor', () => {
setAlertLimitReached: jest.fn(),
getRecoveredAlerts: jest.fn(),
setAlertData: jest.fn(),
isTrackedAlert: jest.fn(),
};

const ruleParams = {
Expand Down

0 comments on commit 7613c22

Please sign in to comment.