Skip to content

Commit

Permalink
Update mod_test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
talentlessguy authored Aug 9, 2023
1 parent 55aadf9 commit aa1a7f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('down', () => {
it('supports custom timeout', async () => {
const t = performance.now()
const isDown = await down('this.is.down.v1rtl.site', 0.5)
expect(performance.now() - t).toBeGreaterThan(500)
expect(performance.now() - t).not.toBeGreaterThan(500)

expect(isDown).toBe(true)
})
Expand Down

0 comments on commit aa1a7f5

Please sign in to comment.