Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
hsubox76 committed Aug 14, 2024
1 parent dd09312 commit 27eba97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/src/heartbeatService.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ describe('HeartbeatServiceImpl', () => {
const warnStub = stub(console, 'warn');
await heartbeatService.triggerHeartbeat();
expect(warnStub).to.be.called;
expect(warnStub.args[0][1].message).to.include("heartbeats");
expect(warnStub.args[0][1].message).to.include('heartbeats');
warnStub.restore();
});
it(`getHeartbeatsHeader() doesn't throw even if code errors`, async () => {
Expand All @@ -163,7 +163,7 @@ describe('HeartbeatServiceImpl', () => {
const warnStub = stub(console, 'warn');
await heartbeatService.getHeartbeatsHeader();
expect(warnStub).to.be.called;
expect(warnStub.args[0][1].message).to.include("heartbeats");
expect(warnStub.args[0][1].message).to.include('heartbeats');
warnStub.restore();
});
});
Expand Down

0 comments on commit 27eba97

Please sign in to comment.