Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ngmachado committed Dec 20, 2023
1 parent 8d2fb2c commit e21902a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/unit-tests/services/notificationJobs.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe("NotificationJobs", () => {
sandbox = sinon.createSandbox();
appMock = {
healthReport: {
fullReport: sinon.stub().resolves({ healthy: false, network: { chainId: 1 } }),
fullReport: sinon.stub().resolves({ healthy: false, network: { chainId: 1 }, reasons: ["test"] }),
},
notifier: {
sendNotification: sinon.stub(),
Expand All @@ -22,6 +22,9 @@ describe("NotificationJobs", () => {
logger: {
info: sinon.stub(),
},
config: {
INSTANCE_NAME: "test",
},
_isShutdown: false,
};

Expand Down

0 comments on commit e21902a

Please sign in to comment.