We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
build.gradle.kts
1 parent f3487a1 commit b857144Copy full SHA for b857144
kotest-multiplatform/build.gradle.kts
@@ -17,10 +17,10 @@ kotlin {
17
}
18
19
jvm()
20
-// js {
21
-// browser()
22
-// nodejs()
23
-// }
+ js {
+ browser()
+ nodejs()
+ }
24
25
@OptIn(ExperimentalWasmDsl::class)
26
wasmJs {
@@ -66,7 +66,6 @@ kotlin {
66
androidNativeArm64()
67
68
sourceSets {
69
-
70
commonTest {
71
dependencies {
72
implementation(libs.kotest.framework.engine)
@@ -75,3 +74,11 @@ kotlin {
75
74
76
77
+
78
+tasks.named<Test>("test") {
79
+ useJUnitPlatform()
80
+ filter {
81
+ isFailOnNoMatchingTests = false
82
83
+}
84
0 commit comments