Skip to content

Commit 446b287

Browse files
committed
test(bulk-model-sync): increase timeout of JS tests
Some long-running tests were failing often, but sometimes they succeed. That's how they made it into master, but many PRs keep failing.
1 parent 014d7b7 commit 446b287

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ plugins {
44

55
kotlin {
66
js(IR) {
7-
browser()
7+
browser {
8+
testTask {
9+
useMocha {
10+
timeout = "30s"
11+
}
12+
}
13+
}
814
}
915
jvm {
1016
jvmToolchain(11)

0 commit comments

Comments
 (0)