anyone experienced ```arrow/core/Continuation jav...
# arrow
s
anyone experienced
Copy code
arrow/core/Continuation
java.lang.NoClassDefFoundError: arrow/core/Continuation
in tests
never-mind, fixed by:
Copy code
testImplementation("io.kotlintest:kotlintest-runner-junit5:3.4.2") {
        exclude("io.arrow-kt")
    }
s
Yes, that’s due to a mismatch on the class path.
👍 1