Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Re-activated UI tests #22

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</BuildableReference>
</TestableReference>
<TestableReference
skipped = "YES">
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "0A2F0CDD2630126000CEC71B"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class InventoryDemoUITests: XCTestCase {
let startButton = app.buttons["Log In"]

// should be on screen, and enabled
XCTAssertTrue(startButton.waitForExistence(timeout: 1))
XCTAssertTrue(startButton.waitForExistence(timeout: 25))
XCTAssertTrue(startButton.isEnabled)

// tap the button!
Expand All @@ -47,7 +47,7 @@ class InventoryDemoUITests: XCTestCase {
let emailText = app.textFields["email_input"]

// should be on screen
XCTAssertTrue(emailText.waitForExistence(timeout: 1))
XCTAssertTrue(emailText.waitForExistence(timeout: 25))

// we tap on it, fill in some text
emailText.tap()
Expand Down