Hello everyone, This is my 1st time with kotlin multiplatform.
I’m trying to write and run unit tests for the android target.
However I’d like those unit tests to be jvm only. For example, everytime, I try to run my tests, I have an emulator that is started. I’d like to avoid that and run them only in jvm mode.
Is it possible?
k
Kris Wong
01/27/2021, 9:57 PM
yes. point your Android
test
source set at your KMM
androidTest
source set, rather than
androidTest
->
androidTest
m
mboudraa
01/27/2021, 10:05 PM
@Kris Wong That’s great. Im not sure how to do that though.
I tried to set