zt
09/20/2024, 5:27 AMtesting
module which contains code to be shared among other modules tests. For some reason though I am getting unresolved reference errors despite having the dependency added. Here is what I have:
commonMain {
dependencies {
api(libs.kotlin.test)
api(libs.coroutines.test)
api(libs.resources.test)
}
}
And the error: Unresolved reference 'BeforeTest'.
My code to be shared is in commonMain
If I understand correctly, this is the only way to share code between testsFergus Hewson
09/20/2024, 5:47 AMAli Azaz Alam
09/20/2024, 7:29 AMzt
09/20/2024, 8:44 PMAzim Ansari
09/29/2024, 10:08 AM