Add UI tests for AppLockFlowCoordinator. (#2055)
* Add UITests for the App Lock flow. * Add Notification Signal Fix unwanted imports in UITests.
This commit is contained in:
@@ -27,12 +27,14 @@ struct AppLockScreenPINKeypad: View {
|
||||
ForEach(1..<4) { column in
|
||||
let digit = (3 * row) + column
|
||||
Button("\(digit)") { press(digit) }
|
||||
.accessibilityIdentifier(A11yIdentifiers.appLockScreen.numpad(digit))
|
||||
}
|
||||
}
|
||||
}
|
||||
GridRow {
|
||||
Button("") { }.hidden()
|
||||
Button("0") { press(0) }
|
||||
.accessibilityIdentifier(A11yIdentifiers.appLockScreen.numpad(0))
|
||||
Button(action: pressDelete) {
|
||||
Image(systemSymbol: .deleteBackward)
|
||||
.symbolVariant(.fill)
|
||||
|
||||
Reference in New Issue
Block a user