Fix A11y tests (#5104)
* replace NavigationStack with ElementNavigationStack to allow the content to be rendered without a NavigationStack in a11y tests * fix a11y tests * update xcodeproject * swiftformat fix * use iOS 26.1 for CI * use a wrapper to solve the issue for a11y tests * ElementNavigationStack only uses the trick in DEBUG mode, and added a swiftlint rule to prevent the usage of NavigationStack
This commit is contained in:
@@ -151,13 +151,13 @@ struct InviteUsersScreen_Previews: PreviewProvider, TestablePreview {
|
||||
static let selectedViewModel = makeViewModel(hasSelection: true)
|
||||
|
||||
static var previews: some View {
|
||||
NavigationStack {
|
||||
ElementNavigationStack {
|
||||
InviteUsersScreen(context: viewModel.context)
|
||||
}
|
||||
.previewDisplayName("Suggestions")
|
||||
.snapshotPreferences(expect: viewModel.context.$viewState.map { !$0.usersSection.users.isEmpty })
|
||||
|
||||
NavigationStack {
|
||||
ElementNavigationStack {
|
||||
InviteUsersScreen(context: searchingViewModel.context)
|
||||
}
|
||||
.previewDisplayName("Searching")
|
||||
@@ -165,7 +165,7 @@ struct InviteUsersScreen_Previews: PreviewProvider, TestablePreview {
|
||||
$0.usersSection.type == .searchResult && !$0.usersSection.users.isEmpty
|
||||
})
|
||||
|
||||
NavigationStack {
|
||||
ElementNavigationStack {
|
||||
InviteUsersScreen(context: selectedViewModel.context)
|
||||
}
|
||||
.previewDisplayName("Selected")
|
||||
|
||||
Reference in New Issue
Block a user