Skip to content

Commit

Permalink
Merge branch 'main' into chore/speed_up_the_build
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/workflows/CICDTest.yml
#	feature/teacherschedule/src/androidTest/java/com/wei/amazingtalker_recruit/feature/teacherschedule/schedule/ScheduleScreenTest.kt
  • Loading branch information
azrael8576 committed Sep 30, 2023
2 parents 4b53fce + 376b4fb commit 64736ee
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,8 @@ internal open class ScheduleScreenRobot(
assertThat(toolbarHeight).isEqualTo(0.dp)
}

// TODO: Temporarily commented out. The Compose UI Testing library breaks performTouchInput handling.
// See more details at: https://issuetracker.google.com/issues/242221780
fun swipeUpScheduleList() {
val start = getScheduleListNodeBounds().bottom
val end = getScheduleListNodeBounds().top
Expand All @@ -292,6 +294,8 @@ internal open class ScheduleScreenRobot(
composeTestRule.waitForIdle()
}

// TODO: Temporarily commented out. The Compose UI Testing library breaks performTouchInput handling.
// See more details at: https://issuetracker.google.com/issues/242221780
fun swipeDownScheduleList() {
val start = getScheduleListNodeBounds().top
val end = getScheduleListNodeBounds().bottom
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ class ScheduleScreenTest {
}
}

// TODO: Temporarily commented out. The Compose UI Testing library breaks performTouchInput handling.
// See more details at: https://issuetracker.google.com/issues/242221780
// @Test
// fun checkScheduleListIsInitPosition_afterOpeningTheScreen() {
// scheduleScreenRobot(composeTestRule) {
Expand All @@ -48,7 +50,10 @@ class ScheduleScreenTest {
// verifyScheduleListIsInInitPosition()
// }
// }
//


// TODO: Temporarily commented out. The Compose UI Testing library breaks performTouchInput handling.
// See more details at: https://issuetracker.google.com/issues/242221780
// @Test
// fun checkScheduleListIsReachesTop_afterSwipeUpScheduleList() {
// scheduleScreenRobot(composeTestRule) {
Expand All @@ -58,7 +63,11 @@ class ScheduleScreenTest {
// verifyScheduleListIsReachesTop()
// }
// }
//



// TODO: Temporarily commented out. The Compose UI Testing library breaks performTouchInput handling.
// See more details at: https://issuetracker.google.com/issues/242221780
// @Test
// fun checkScheduleListIsInitPosition_afterSwipeDownScheduleList() {
// scheduleScreenRobot(composeTestRule) {
Expand Down

0 comments on commit 64736ee

Please sign in to comment.