Hey folks, is there a way to make `org.junit...` n...
# testing
n
Hey folks, is there a way to make
org.junit...
not importable in tests of multiplatform project? For context, I only have
kotlin('test')
and
kotlin('test-annotations-common')
in
commonTest
and
kotlin('test-junit')
in
jvmTest
. No direct dependency to JUnit whatsoever, but it’s still importable because it’s still in the classpath I guess?
👍 1