Skip to content

Commit

Permalink
CI can be slow
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Mar 30, 2020
1 parent e372b3e commit 9afe9e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mkver.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async function assertResult(gitSha: string, pathToVersionFile: string) {
const result = require(pathToRequire)
expect(result.gitSha).to.eql(gitSha)
expect(result.gitDate).to.be.within(
new Date(Date.now() - 5000) as any,
new Date(Date.now() - 15000) as any, // CI can take more than 10s to complete
new Date() as any
)
expect(result.version).to.eql(expVer)
Expand Down

0 comments on commit 9afe9e7

Please sign in to comment.