mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00
Fix UI tests
This commit is contained in:
parent
730ada69a0
commit
98de77679b
@ -39,7 +39,7 @@ struct HomeScreen: View {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.animation(.default, value: context.viewState.visibleRooms)
|
.animation(.elementDefault, value: context.viewState.visibleRooms)
|
||||||
.padding(.horizontal)
|
.padding(.horizontal)
|
||||||
.searchable(text: $context.searchQuery)
|
.searchable(text: $context.searchQuery)
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,6 @@ struct RoomScreenViewState: BindableState {
|
|||||||
var roomId: String
|
var roomId: String
|
||||||
var roomTitle = ""
|
var roomTitle = ""
|
||||||
var roomAvatar: UIImage?
|
var roomAvatar: UIImage?
|
||||||
var roomEncryptionBadge: UIImage?
|
|
||||||
var items: [RoomTimelineViewProvider] = []
|
var items: [RoomTimelineViewProvider] = []
|
||||||
var isBackPaginating = false
|
var isBackPaginating = false
|
||||||
var bindings: RoomScreenViewStateBindings
|
var bindings: RoomScreenViewStateBindings
|
||||||
|
@ -33,8 +33,7 @@ class RoomScreenViewModel: RoomScreenViewModelType, RoomScreenViewModelProtocol
|
|||||||
timelineViewFactory: RoomTimelineViewFactoryProtocol,
|
timelineViewFactory: RoomTimelineViewFactoryProtocol,
|
||||||
mediaProvider: MediaProviderProtocol,
|
mediaProvider: MediaProviderProtocol,
|
||||||
roomName: String?,
|
roomName: String?,
|
||||||
roomAvatarUrl: String? = nil,
|
roomAvatarUrl: String? = nil) {
|
||||||
roomEncryptionBadge: UIImage? = nil) {
|
|
||||||
self.timelineController = timelineController
|
self.timelineController = timelineController
|
||||||
self.timelineViewFactory = timelineViewFactory
|
self.timelineViewFactory = timelineViewFactory
|
||||||
self.mediaProvider = mediaProvider
|
self.mediaProvider = mediaProvider
|
||||||
@ -42,7 +41,6 @@ class RoomScreenViewModel: RoomScreenViewModelType, RoomScreenViewModelProtocol
|
|||||||
super.init(initialViewState: RoomScreenViewState(roomId: timelineController.roomId,
|
super.init(initialViewState: RoomScreenViewState(roomId: timelineController.roomId,
|
||||||
roomTitle: roomName ?? "Unknown room 💥",
|
roomTitle: roomName ?? "Unknown room 💥",
|
||||||
roomAvatar: nil,
|
roomAvatar: nil,
|
||||||
roomEncryptionBadge: roomEncryptionBadge,
|
|
||||||
bindings: .init(composerText: "", composerFocused: false)))
|
bindings: .init(composerText: "", composerFocused: false)))
|
||||||
|
|
||||||
timelineController.callbacks
|
timelineController.callbacks
|
||||||
|
@ -37,11 +37,6 @@ struct RoomHeaderView: View {
|
|||||||
ZStack(alignment: .bottomTrailing) {
|
ZStack(alignment: .bottomTrailing) {
|
||||||
roomAvatarImage
|
roomAvatarImage
|
||||||
.clipShape(Circle())
|
.clipShape(Circle())
|
||||||
|
|
||||||
if let encryptionBadge = context.viewState.roomEncryptionBadge {
|
|
||||||
Image(uiImage: encryptionBadge)
|
|
||||||
.accessibilityIdentifier("encryptionBadgeIcon")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
.frame(width: AvatarSize.room(on: .timeline).value, height: AvatarSize.room(on: .timeline).value)
|
.frame(width: AvatarSize.room(on: .timeline).value, height: AvatarSize.room(on: .timeline).value)
|
||||||
}
|
}
|
||||||
@ -87,8 +82,7 @@ struct RoomHeaderView_Previews: PreviewProvider {
|
|||||||
timelineViewFactory: RoomTimelineViewFactory(),
|
timelineViewFactory: RoomTimelineViewFactory(),
|
||||||
mediaProvider: MockMediaProvider(),
|
mediaProvider: MockMediaProvider(),
|
||||||
roomName: "Some Room name",
|
roomName: "Some Room name",
|
||||||
roomAvatarUrl: nil,
|
roomAvatarUrl: nil)
|
||||||
roomEncryptionBadge: Asset.Images.encryptionTrusted.image)
|
|
||||||
|
|
||||||
RoomHeaderView(context: viewModel.context)
|
RoomHeaderView(context: viewModel.context)
|
||||||
.previewLayout(.sizeThatFits)
|
.previewLayout(.sizeThatFits)
|
||||||
|
@ -43,6 +43,10 @@ struct MockMediaProvider: MediaProviderProtocol {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func loadImageFromURLString(_ urlString: String, avatarSize: AvatarSize?) async -> Result<UIImage, MediaProviderError> {
|
func loadImageFromURLString(_ urlString: String, avatarSize: AvatarSize?) async -> Result<UIImage, MediaProviderError> {
|
||||||
.failure(.failedRetrievingImage)
|
guard let image = UIImage(systemName: "photo") else {
|
||||||
|
fatalError()
|
||||||
|
}
|
||||||
|
|
||||||
|
return .success(image)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,6 @@ class RoomScreenUITests: XCTestCase {
|
|||||||
|
|
||||||
XCTAssert(app.staticTexts["roomNameLabel"].exists)
|
XCTAssert(app.staticTexts["roomNameLabel"].exists)
|
||||||
XCTAssert(app.staticTexts["roomAvatarPlaceholderImage"].exists)
|
XCTAssert(app.staticTexts["roomAvatarPlaceholderImage"].exists)
|
||||||
XCTAssertFalse(app.images["encryptionBadgeIcon"].exists)
|
|
||||||
|
|
||||||
app.assertScreenshot(.roomPlainNoAvatar)
|
app.assertScreenshot(.roomPlainNoAvatar)
|
||||||
}
|
}
|
||||||
@ -36,7 +35,6 @@ class RoomScreenUITests: XCTestCase {
|
|||||||
|
|
||||||
XCTAssert(app.staticTexts["roomNameLabel"].exists)
|
XCTAssert(app.staticTexts["roomNameLabel"].exists)
|
||||||
XCTAssert(app.images["roomAvatarImage"].exists)
|
XCTAssert(app.images["roomAvatarImage"].exists)
|
||||||
XCTAssert(app.images["encryptionBadgeIcon"].exists)
|
|
||||||
|
|
||||||
app.assertScreenshot(.roomEncryptedWithAvatar)
|
app.assertScreenshot(.roomEncryptedWithAvatar)
|
||||||
}
|
}
|
||||||
|
@ -56,7 +56,7 @@ class ServerSelectionUITests: XCTestCase {
|
|||||||
|
|
||||||
// Then the screen should not allow the user to continue.
|
// Then the screen should not allow the user to continue.
|
||||||
let serverTextField = app.textFields.element
|
let serverTextField = app.textFields.element
|
||||||
XCTAssertEqual(serverTextField.value as? String, ElementL10n.serverSelectionServerUrl, "The text field should show placeholder text in this state.")
|
XCTAssertEqual(serverTextField.value as? String, ElementL10n.ftueAuthChooseServerEntryHint, "The text field should show placeholder text in this state.")
|
||||||
|
|
||||||
let confirmButton = app.buttons["confirmButton"]
|
let confirmButton = app.buttons["confirmButton"]
|
||||||
XCTAssertTrue(confirmButton.exists, "The confirm button should always be shown.")
|
XCTAssertTrue(confirmButton.exists, "The confirm button should always be shown.")
|
||||||
|
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.authenticationFlow.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.authenticationFlow.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.bugReport.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.bugReport.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.bugReportWithScreenshot.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.bugReportWithScreenshot.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.home.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.home.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.login.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.login.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.roomEncryptedWithAvatar.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.roomEncryptedWithAvatar.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.roomPlainNoAvatar.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.roomPlainNoAvatar.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.serverSelection.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.serverSelection.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.serverSelectionNonModal.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.serverSelectionNonModal.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.sessionVerification.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.sessionVerification.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.settings.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.settings.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.simpleRegular.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.simpleRegular.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.simpleUpgrade.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.simpleUpgrade.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.softLogout.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.softLogout.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.splash.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.splash.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.authenticationFlow.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.authenticationFlow.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.bugReport.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.bugReport.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.bugReportWithScreenshot.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.bugReportWithScreenshot.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.home.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.home.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.login.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.login.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.roomPlainNoAvatar.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.roomPlainNoAvatar.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.serverSelection.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.serverSelection.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.serverSelectionNonModal.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.serverSelectionNonModal.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.sessionVerification.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.sessionVerification.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.settings.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.settings.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.simpleRegular.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.simpleRegular.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.simpleUpgrade.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.simpleUpgrade.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.softLogout.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.softLogout.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.splash.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.splash.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.authenticationFlow.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.authenticationFlow.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.bugReport.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.bugReport.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.bugReportWithScreenshot.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.bugReportWithScreenshot.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.home.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.home.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.login.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.login.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.roomEncryptedWithAvatar.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.roomEncryptedWithAvatar.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.roomPlainNoAvatar.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.roomPlainNoAvatar.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.serverSelection.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.serverSelection.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.serverSelectionNonModal.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.serverSelectionNonModal.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.sessionVerification.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.sessionVerification.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.settings.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.settings.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.simpleRegular.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.simpleRegular.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.simpleUpgrade.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.simpleUpgrade.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.softLogout.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.softLogout.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.splash.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.splash.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.authenticationFlow.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.authenticationFlow.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.bugReport.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.bugReport.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.bugReportWithScreenshot.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.bugReportWithScreenshot.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.home.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.home.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.login.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.login.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.roomPlainNoAvatar.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.roomPlainNoAvatar.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.serverSelection.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.serverSelection.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.serverSelectionNonModal.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.serverSelectionNonModal.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.sessionVerification.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.sessionVerification.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.settings.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.settings.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.simpleRegular.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.simpleRegular.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.simpleUpgrade.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.simpleUpgrade.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.softLogout.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.softLogout.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.splash.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.splash.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.authenticationFlow.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.authenticationFlow.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.bugReport.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.bugReport.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.bugReportWithScreenshot.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.bugReportWithScreenshot.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.home.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.home.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.login.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.login.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.roomEncryptedWithAvatar.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.roomEncryptedWithAvatar.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.roomPlainNoAvatar.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.roomPlainNoAvatar.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.serverSelection.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.serverSelection.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.serverSelectionNonModal.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.serverSelectionNonModal.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.sessionVerification.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.sessionVerification.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.settings.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.settings.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.simpleRegular.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.simpleRegular.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.simpleUpgrade.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.simpleUpgrade.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.softLogout.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.softLogout.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.splash.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.splash.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.authenticationFlow.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.authenticationFlow.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.bugReport.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.bugReport.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.bugReportWithScreenshot.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.bugReportWithScreenshot.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.home.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.home.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.login.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.login.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.roomPlainNoAvatar.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.roomPlainNoAvatar.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.serverSelection.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.serverSelection.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.serverSelectionNonModal.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.serverSelectionNonModal.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.sessionVerification.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.sessionVerification.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.settings.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.settings.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.simpleRegular.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.simpleRegular.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.simpleUpgrade.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.simpleUpgrade.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.softLogout.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.softLogout.png
(Stored with Git LFS)
Binary file not shown.
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.splash.png
(Stored with Git LFS)
BIN
UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.splash.png
(Stored with Git LFS)
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user