Skip to content

Commit 4d3048d

Browse files
author
Oleksandr Dzhychko
committed
test(bulk-model-sync): increase timeout of JS tests
The test `can handle random changes` was often failing due to timeouts. It fails because one test checks a hundred random cases. `kotlin.test` does not support parametrized tests. Kotest would support it, but the `Annotation Spec` does not support Kotlin multiplatform. Not wanting to decide on another testing style and rewrite the test, I just increased the timeout.
1 parent 6aa43ea commit 4d3048d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bulk-model-sync-lib/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ kotlin {
77
browser {
88
testTask {
99
useMocha {
10-
timeout = "30s"
10+
timeout = "60s"
1111
}
1212
}
1313
}

0 commit comments

Comments
 (0)