wasmWasiTest

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

Sample:

kotlin {
wasmWasi() // Target is declared, wasmWasiTest source set is created

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

Since

2.0.20