Skip to content

Commit e4d6e0f

Browse files
committed
Increase timeout for JS tests
Some of JS tests can sporadically take more time on Windows than expected (cherry picked from commit 7849d9a)
1 parent d90c7bf commit e4d6e0f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

core/build.gradle.kts

+5-1
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)