diff --git a/library/src/test/java/com/telefonica/mistica/compose/input/PasswordInputKtTest.kt b/library/src/test/java/com/telefonica/mistica/compose/input/PasswordInputKtTest.kt index 9a9e898d6..0c14dd999 100644 --- a/library/src/test/java/com/telefonica/mistica/compose/input/PasswordInputKtTest.kt +++ b/library/src/test/java/com/telefonica/mistica/compose/input/PasswordInputKtTest.kt @@ -28,7 +28,6 @@ internal class PasswordInputKtTest { `when PasswordInput`() `then screenshot is OK`() - `then the password is not visible`() } @Test @@ -38,7 +37,6 @@ internal class PasswordInputKtTest { `when the visibility button is clicked`() `then screenshot is OK`() - `then the password is visible`() } @Test @@ -48,7 +46,6 @@ internal class PasswordInputKtTest { `when the visibility button is clicked`(times = 2) `then screenshot is OK`() - `then the password is not visible`() } private fun TestScope.`given PasswordInput`() { @@ -73,14 +70,6 @@ internal class PasswordInputKtTest { } } - private fun TestScope.`then the password is not visible`() { - composeTestRule.onNodeWithText(textValue).assertDoesNotExist() - } - - private fun TestScope.`then the password is visible`() { - composeTestRule.onNodeWithText(textValue).assertIsDisplayed() - } - private fun `then screenshot is OK`() { composeTestRule.onRoot() .captureRoboImage(ScreenshotUtils.getScreenshotName())