wasmJsTest

Static accessor for the test Kotlin Source Set of wasmJs target. Declare wasmJs target to access this source set. If wasmJs target wasn't declared, accessing this source set will cause a runtime error during configuration time.

Sample:

kotlin {
wasmJs() // Target is declared, wasmJsTest source set is created

sourceSets {
wasmJsTest.dependencies {
// Add wasmJsTest dependencies here
}
}
}

Since

2.0.20