Couple of questions with running kotlin tests on Multiplatform project (i.e. common, android, and ios).
- When a test fails it only shows the name of the exception (e.g.
org.junit.ComparisonFailure at ActivityTest.kt:10
) in the gradle output and not the message of the exception. Is it possible to configure it to show the message of the exception which contains useful information likeexpected: 2 but was: 1
- We have tests in commonTest and in androidTest. If we run
./gradlew test
, HTML reports are generated for all the tests under packages and classes, but the root level index.html file in the test-reports directory only has the tests from androidTest