Is the `allTests` Gradle task Kotlin/Native only?
# kotlin-native
l
Is the
allTests
Gradle task Kotlin/Native only?
k
I think it is mpp. It will run my jvm tests, if i have jvm target.
But if there is only ios or only jvm, then that task disapperas from gradle task list...
what?
l
Disappearing when there's only one target? That's not good, that might end up missing tests when running the test tasks at root project level (which is what I do)
m
I use
check
for that, as it runs the test, even if there isn’t any
allTests
task.