Final changes for Room Moderation (#2576)

* Add confirmation that the user would like to discard unsaved changes.

* Update string on permissions screen.

* Fix UI tests and update snapshots.

* Fix integration tests.

* Run periphery for Moderation feature.
This commit is contained in:
Doug
2024-03-15 13:41:23 +00:00
committed by GitHub
parent 5c164bc94a
commit 0ccaa6180b
29 changed files with 84 additions and 47 deletions

View File

@@ -18,7 +18,7 @@ import XCTest
extension XCUIApplication {
func login(currentTestCase: XCTestCase) {
let getStartedButton = buttons[A11yIdentifiers.onboardingScreen.signIn]
let getStartedButton = buttons[A11yIdentifiers.authenticationStartScreen.signIn]
XCTAssertTrue(getStartedButton.waitForExistence(timeout: 10.0))
getStartedButton.tap()
@@ -128,7 +128,7 @@ extension XCUIApplication {
alertLogoutButton.tap()
// Check that we're back on the login screen
let getStartedButton = buttons[A11yIdentifiers.onboardingScreen.signIn]
let getStartedButton = buttons[A11yIdentifiers.authenticationStartScreen.signIn]
XCTAssertTrue(getStartedButton.waitForExistence(timeout: 10.0))
}
}