Skip to content

Commit

Permalink
Fix delay tolerance in soffice test
Browse files Browse the repository at this point in the history
  • Loading branch information
yhatt committed Jan 15, 2025
1 parent d6f7ce0 commit ce92dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/soffice/soffice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ describe('SOffice class', () => {
expect(finishedTimes).toHaveLength(2)
expect(
Math.abs(finishedTimes[1] - finishedTimes[0])
).toBeGreaterThanOrEqual(spawnSetting.delay)
).toBeGreaterThanOrEqual(spawnSetting.delay - 10)
})
})

Expand Down

0 comments on commit ce92dcd

Please sign in to comment.