Skip to content

Commit

Permalink
test: increase number of calls
Browse files Browse the repository at this point in the history
  • Loading branch information
cshezi committed Jan 9, 2024
1 parent 5c025e4 commit 8d54b79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Comment on PR

run: |
COMMENT_BODY="<li> Response Average ${{ needs.build.outputs.responseAverage }}ms ⚠️<br /><li>Response Min ${{ needs.build.outputs.responseMin }}ms <br /><li>Response max ${{ needs.build.outputs.responseMax }}ms <br /><li>Response Stardard dev ${{ needs.build.outputs.responseSd }}ms"
COMMENT_BODY="<li> Response Average ${{ needs.build.outputs.responseAverage }}ms ⚠️<br /><li>Response Min ${{ needs.build.outputs.responseMin }}ms <br /><li>Response max ${{ needs.build.outputs.responseMax }}ms <br /><li>Response standard dev ${{ needs.build.outputs.responseSd }}ms"
API_URL="https://api.github.com/repos/${{github.repository}}/issues/${{github.event.number}}/comments"
curl -X POST \
Expand Down
2 changes: 1 addition & 1 deletion __tests__/unit/logic.service.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ describe('Logic Service', () => {
expect(loggerSpy).toHaveBeenCalledWith('Successfully sent to [email protected]');
expect(loggerSpy).toHaveBeenCalledWith('Successfully sent to [email protected]');
expect(errorLoggerSpy).toHaveBeenCalledTimes(0);
expect(debugLoggerSpy).toHaveBeenCalledTimes(1);
expect(debugLoggerSpy).toHaveBeenCalledTimes(2);
});

it('should respond with empty network submap no network map is found', async () => {
Expand Down

0 comments on commit 8d54b79

Please sign in to comment.