Skip to content

Commit 56968fd

Browse files
committed
ignored timeout (doesn't do anything; maybe they'll fix it)
1 parent 6b68b50 commit 56968fd

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

build.gradle.kts

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,29 +45,24 @@ kotlin {
4545
iosArm64()
4646
iosX64()
4747
iosSimulatorArm64()
48+
@OptIn(org.jetbrains.kotlin.gradle.ExperimentalWasmDsl::class)
4849
wasmJs {
4950
browser {
5051
testTask {
51-
useMocha {
52-
timeout = "60s"
53-
}
52+
// FIXME ignored
53+
timeout= Duration.ofSeconds(60)
5454
}
5555
}
5656
nodejs {
5757
testTask {
58-
useMocha {
59-
timeout = "60s"
60-
}
58+
timeout= Duration.ofSeconds(60)
6159
}
6260
}
6361
d8 {
6462
testTask {
65-
useMocha {
66-
timeout = "60s"
67-
}
63+
timeout= Duration.ofSeconds(60)
6864
}
6965
}
70-
7166
}
7267
// no kotest support yet for this
7368
// wasmWasi()

0 commit comments

Comments
 (0)