also: this is my wasmJs target configuration in my...
# multiplatform
f
also: this is my wasmJs target configuration in my
build.gradle.kts
:
Copy code
// web target
@OptIn(org.jetbrains.kotlin.gradle.ExperimentalWasmDsl::class)
wasmJs {
    nodejs {
        testTask {
            useKarma {
                useSafari()
            }
        }
    }
    binaries.executable()
}