Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Aug 26, 2020
1 parent d85f963 commit 300e53c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/matchers/mock/toBeCalledTimes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ describe('toBeRequestedTimes', () => {

const result4 = await toBeRequestedTimes(mock, { gte: 3 })
expect(result4.message()).toContain('Expect mock to be called times')
expect(result4.message()).toContain('Expected: ">= 3"')
// eslint-disable-next-line no-useless-escape
expect(result4.message()).toContain('Expected: \">= 3\"')
expect(result4.message()).toContain('Received: 0')
})
})

0 comments on commit 300e53c

Please sign in to comment.