Skip to content

Commit

Permalink
Merge pull request #1479 from robstoll/fix/mocha-timeout-issues
Browse files Browse the repository at this point in the history
increase mocha timeout to help slow windows
  • Loading branch information
robstoll authored Jul 10, 2023
2 parents 8fc0786 + cd46619 commit fa35b42
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,18 @@ kotlin {
}

//TODO 1.1.0 switch from LEGACY to IR
js(LEGACY) { nodejs() }
js(LEGACY) {
nodejs {
testTask {
useMocha {
// timeout in milliseconds,
// Windows regularly has a timeout with the default which
// at the time of writting was 2000
timeout = "10000"
}
}
}
}

sourceSets {
configureLanguageSettings()
Expand Down

0 comments on commit fa35b42

Please sign in to comment.