Rohit Verma
04/24/2025, 9:01 AMcompose.uiTest
dependency. I added this dependency in the ui-testing
module like this. But it has no effect on the module(home) where I implemented ui-testing
module. However, it works when I defined below dependency directly in the home module. Could anyone please help me with this?
commonTest.dependencies {
@OptIn(ExperimentalComposeLibrary::class)
api(compose.uiTest)
}
Rohit Verma
04/24/2025, 1:20 PMRohit Verma
04/25/2025, 4:51 PMcommonTest
with commonMain
. Now I can successfully access the methods provided by the compose.uiTest in the implementing module, i.e., feature:home
.