pajatopmr
02/15/2022, 6:39 AMolonho
02/15/2022, 8:54 AMIgor Demin
02/15/2022, 9:02 AMassertIsDisplayed
2. the build.gradle
is correct. By the way, there is a shortcut for ui-test module:
@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class)
implementation(compose.uiTestJUnit4)
3. You can track progress here.pajatopmr
02/15/2022, 11:03 AMIgor Demin
02/15/2022, 11:05 AMfind the ui-test moduleIt's in androidx repo
pajatopmr
02/15/2022, 11:19 AMIgor Demin
02/15/2022, 11:51 AMandroidx.compose.multiplatformEnabled=true
After that you can open sources in Android Studio via command ./gradlew studio
To run some test, use this command:
./gradlew desktopTest --tests "androidx.compose.ui.input.mouse.MouseHoverFilterTest"
After you prepare a change and it is ready for review, you can ask for the review on JB side (me or Nikolay, for example). After our review, we will add reviewers from Google.Kebbin
02/15/2022, 1:12 PMolonho
02/15/2022, 1:13 PMDavid Silber
02/16/2022, 2:29 AMassertIsDisplayed()
gives me that "An operation is not implemented." message, but assertExists()
and `assertDoesNotExist()`work fine. It is a start!pajatopmr
02/16/2022, 4:57 AM