Skip to content

Commit

Permalink
fix test condition
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonErm committed Feb 8, 2021
1 parent 7ab1e9a commit e5411be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__tests__/Queue.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ describe('Queue Basics', () => {
});
it('handle attempts correctly', (done) => {
const onQueueFinish = () => {
expect(executer).toBeCalledTimes(6);
expect(executer).toBeCalledTimes(5);
done();
};
const executer = jest.fn(() => {
Expand Down

0 comments on commit e5411be

Please sign in to comment.