possible fix for flaky UI tests

- increased the time for the oidc selection alert check
- for the poll screen creation, in the test only we reduced the number of options to 10
This commit is contained in:
Mauro Romito
2025-04-28 15:11:06 +02:00
committed by Mauro
parent 07e2329aeb
commit e024c1f264
6 changed files with 10 additions and 10 deletions

View File

@@ -10,8 +10,8 @@ import SwiftUI
struct PollFormScreenCoordinatorParameters {
let mode: PollFormMode
/// The max number of allowed options, default is 20, but for faster UI tests we allow the value to be lower
var maxNumberOfOptions = 20
/// The max number of allowed options, if no value provided the default value of the view model will be used.
var maxNumberOfOptions: Int?
}
enum PollFormScreenCoordinatorAction {

View File

@@ -15,7 +15,7 @@ enum PollFormScreenViewModelAction: Equatable {
struct PollFormScreenViewState: BindableState {
let mode: PollFormMode
var maxNumberOfOptions: Int
let maxNumberOfOptions: Int
var bindings: PollFormScreenViewStateBindings = .init()
init(mode: PollFormMode, maxNumberOfOptions: Int) {

View File

@@ -17,8 +17,8 @@ class PollFormScreenViewModel: PollFormScreenViewModelType, PollFormScreenViewMo
actionsSubject.eraseToAnyPublisher()
}
init(mode: PollFormMode, maxNumberOfOptions: Int) {
super.init(initialViewState: .init(mode: mode, maxNumberOfOptions: maxNumberOfOptions))
init(mode: PollFormMode, maxNumberOfOptions: Int? = nil) {
super.init(initialViewState: .init(mode: mode, maxNumberOfOptions: maxNumberOfOptions ?? 20))
}
// MARK: - Public

View File

@@ -42,7 +42,7 @@ class PollFormScreenUITests: XCTestCase {
let createButton = app.buttons[A11yIdentifiers.pollFormScreen.submit]
let addOption = app.buttons[A11yIdentifiers.pollFormScreen.addOption]
for _ in 1...18 {
for _ in 1...8 {
// Use the frame as a fallback to fix the button being obscured by the home indicator.
if !addOption.isHittable || addOption.frame.maxY > (app.frame.maxY - 20) {
app.swipeUp()

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f917c5025edb6d96857a824a4686eafee33aed4759b0427f488cde8b0e4a0214
size 195197
oid sha256:1141531136024258cb952d4a078d43e168258350e0afa8e048d3a12849dc7291
size 133124

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:860ce4ca442b8c5b5936aa0da77d9efa885e1ec86f9e12f02c4d828e918e8f47
size 299469
oid sha256:3692a76bba54ff6c9896df27208aa6866428a979b0030653f15d93bfe680ff72
size 239255