Fixing Tests for Xcode 14.3 (#888)
* settting macOS to 13, and let's runa test of... the tests * I want the artifacts of the test, might give me some more insight in Xcode * archive artifact * trying a thing with the xcode version * push notifications alert makes this test fail * test improvement * let's try with a very long time * let's disable autocorrection * sleep * 1 seconds fixed 90% of the issue, 2 should fix 100% * waiting some more time in flaky tests and updated the content of a test that was failing * updated a screenshot test that had a notification * this integration test is a bit so flaky increased the timing * controlled delay waited a bit moe for the timeline to settle * try await * MainActor everywhere * milliseconds fix * trying with a bit more waiting time after the tap and a slow velocity for the swipe * let's try waiting more time
This commit is contained in:
@@ -17,8 +17,9 @@
|
||||
import ElementX
|
||||
import XCTest
|
||||
|
||||
@MainActor
|
||||
class TemplateScreenUITests: XCTestCase {
|
||||
func testRegularScreen() {
|
||||
func testRegularScreen() async throws {
|
||||
let app = Application.launch(.simpleRegular)
|
||||
|
||||
let title = app.staticTexts["title"]
|
||||
@@ -26,10 +27,10 @@ class TemplateScreenUITests: XCTestCase {
|
||||
|
||||
XCTAssertEqual(title.label, "Make this chat public?")
|
||||
|
||||
app.assertScreenshot(.simpleRegular)
|
||||
try await app.assertScreenshot(.simpleRegular)
|
||||
}
|
||||
|
||||
func testUpgradeScreen() {
|
||||
func testUpgradeScreen() async throws {
|
||||
let app = Application.launch(.simpleUpgrade)
|
||||
|
||||
let title = app.staticTexts["title"]
|
||||
@@ -37,6 +38,6 @@ class TemplateScreenUITests: XCTestCase {
|
||||
|
||||
XCTAssertEqual(title.label, "Privacy warning")
|
||||
|
||||
app.assertScreenshot(.simpleUpgrade)
|
||||
try await app.assertScreenshot(.simpleUpgrade)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user