You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to add hamkrest as test dependency in multiplatform package?
I am trying to do this commonTest { dependencies { implementation kotlin('test-common') implementation kotlin('test-annotations-common') implementation 'com.natpryce:hamkrest:1.7.0.0' } }
but that doesn't work. I can see the lib in Intellij but classes are not accessible in tests
The text was updated successfully, but these errors were encountered:
There are now two branches, a jvm branch, which is the current mainline, and multiplatform where a multiplatform build is being explored. Kotlin multiplatform builds are still alpha, so this work is not very active.
Is it possible to add hamkrest as test dependency in multiplatform package?
I am trying to do this
commonTest { dependencies { implementation kotlin('test-common') implementation kotlin('test-annotations-common') implementation 'com.natpryce:hamkrest:1.7.0.0' } }
but that doesn't work. I can see the lib in Intellij but classes are not accessible in tests
The text was updated successfully, but these errors were encountered: