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
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