Hi folks, I’m running into this exception trying t...
# multiplatform
j
Hi folks, I’m running into this exception trying to compile my JS tests in a KMM project. The task that fails is
:compileTestKotlinJs
. What I see it doing is: 1. It says it has to perform non-incremental compilation.
Non-incremental compilation will be performed: UNKNOWN_CHANGES_IN_GRADLE_INPUTS
2. It clears the output folders. Including
build/classes/kotlin/js
where the JS sources should be compiled 3. It complains it can’t find
build/classes/kotlin/js/main
🤦
This is using the following configuration:
Copy code
js(IR) {
        binaries.library()
        nodejs()
    }
There are no dependencies or anything, just a vanilla test in commonTests that uses classes in commonMain
Have you seen this before?