Skip to content

Commit

Permalink
give CI windows a touch more time to complete
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Mar 1, 2022
1 parent 38320f8 commit 7a97bd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/BatchCluster.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import process from "process"
import { filterInPlace } from "./Array"
import { delay, until } from "./Async"
import { BatchCluster } from "./BatchCluster"
import { BatchClusterOptions } from "./BatchClusterOptions"
import { BatchClusterOptions, secondMs } from "./BatchClusterOptions"
import { map, omit, orElse } from "./Object"
import { isWin } from "./Platform"
import { toS } from "./String"
Expand Down Expand Up @@ -390,6 +390,7 @@ describe("BatchCluster", function () {
opts.maxTasksPerProcess +
" before recycling",
async function () {
if (isWin && isCI) this.setTimeout(45 * secondMs)
// make sure we hit an EUNLUCKY:
setFailratePct(60)
let expectedResultCount = 0
Expand Down

0 comments on commit 7a97bd2

Please sign in to comment.