Skip to content

Commit

Permalink
check4
Browse files Browse the repository at this point in the history
  • Loading branch information
srushtisv committed Dec 10, 2024
1 parent 222f2d4 commit ea20133
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,8 @@ class AuthenticationExampleUITests: XCTestCase {
app.textFields["Enter Phone Number"].typeText(testPhone)
app.buttons["Send Verification Code"].tap()
let verificationCodeInput = app.textFields["Enter verification code."]
let exists = verificationCodeInput.waitForExistence(timeout: 10)
XCTAssertTrue(exists, "Verification code field does not exist")

Check failure on line 194 in FirebaseAuth/Tests/SampleSwift/AuthenticationExampleUITests/AuthenticationExampleUITests.swift

View workflow job for this annotation

GitHub Actions / integration-tests (AuthenticationExampleUITests)

testPhoneAuthLoginRCEInEnforceMode, XCTAssertTrue failed - Verification code field does not exist

Check failure on line 194 in FirebaseAuth/Tests/SampleSwift/AuthenticationExampleUITests/AuthenticationExampleUITests.swift

View workflow job for this annotation

GitHub Actions / integration-tests (AuthenticationExampleUITests)

testPhoneAuthLoginRCEInEnforceMode, XCTAssertTrue failed - Verification code field does not exist

Check failure on line 194 in FirebaseAuth/Tests/SampleSwift/AuthenticationExampleUITests/AuthenticationExampleUITests.swift

View workflow job for this annotation

GitHub Actions / integration-tests (AuthenticationExampleUITests)

testPhoneAuthLoginRCEInEnforceMode, XCTAssertTrue failed - Verification code field does not exist
let testVerificationCode = "123456"
verificationCodeInput.typeText(testVerificationCode)
app.buttons["Continue"].tap()
Expand Down

0 comments on commit ea20133

Please sign in to comment.