We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2529ffb commit 6dc2e93Copy full SHA for 6dc2e93
1 file changed
app/src/androidTest/kotlin/com/darkrockstudios/app/securecamera/SmokeTestUiTest.kt
@@ -46,7 +46,12 @@ class SmokeTestUiTest {
46
47
setPinFields("3133734", "313373")
48
onNodeWithText(str(R.string.pin_creation_button)).performClick()
49
- waitForText(R.string.pin_creation_error)
+ try {
50
+ waitForText(R.string.pin_creation_error)
51
+ } catch (e: ComposeTimeoutException) {
52
+ onRoot(useUnmergedTree = true).printToLog("TEST-TAG")
53
+ throw e
54
+ }
55
56
setPinFields("123456", "123456")
57
0 commit comments