[SOLVED] Hi ! I used to run my unit tests using a ...
# android
n
[SOLVED] Hi ! I used to run my unit tests using a gradle configuration running through Android Studio but it does not show the test pane anymore. 😞 Do you know how to get it back ?
Android Studio 4.2.1 / KMM Plugin 0.2.6
m
I needed to add
--tests "*"
to the arguments for the configuration to get the tests results to display. Without it, I only saw the gradle output.
🙌 2
n
Awesome, it works ! Thank you @mkrussel ! 👍