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.
1 parent 3b7e22c commit e767891Copy full SHA for e767891
json-schema-validator/build.gradle.kts
@@ -149,6 +149,8 @@ kotlin {
149
nodejs()
150
}
151
wasmJs {
152
+ // The wasmJsBrowserTest prints all executed tests as one unformatted string
153
+ // Have not found a way to suppress printing all this into console
154
browser()
155
156
@@ -193,8 +195,7 @@ kotlin {
193
195
194
196
197
- val wasmJsMain by getting {
- }
198
+ val wasmJsMain by getting
199
200
val nonWasmJsMain by creating {
201
dependsOn(commonMain)
@@ -282,6 +283,7 @@ kotlin {
282
283
dependsOnTargetTests(linuxTargets)
284
dependsOn(tasks.getByName("jvmTest"))
285
dependsOn(tasks.getByName("jsTest"))
286
+ dependsOn(tasks.getByName("wasmJsTest"))
287
288
289
0 commit comments