Skip to content

Commit

Permalink
increase mocha timeout to help slow windows
Browse files Browse the repository at this point in the history
  • Loading branch information
robstoll committed Jul 7, 2023
1 parent 332ab3f commit cd46619
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 cd46619

Please sign in to comment.