Skip to content

Commit 7849d9a

Browse files
committed
Increase timeout for JS tests
Some of JS tests can sporadically take more time on Windows than expected
1 parent a18ec4c commit 7849d9a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

core/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,11 @@ kotlin {
6666

6767
js {
6868
nodejs {
69-
// testTask { }
69+
testTask {
70+
useMocha {
71+
timeout = "5s"
72+
}
73+
}
7074
}
7175
compilations.all {
7276
kotlinOptions {

0 commit comments

Comments
 (0)