We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d595a8b commit e92dc97Copy full SHA for e92dc97
samples/swiftui/FirebaseSwiftUIExample/FirebaseSwiftUIExampleUITests/FirebaseSwiftUIExampleUITests.swift
@@ -54,6 +54,13 @@ final class FirebaseSwiftUIExampleUITests: XCTestCase {
54
twitterButton.waitForExistence(timeout: 5),
55
"Twitter/X sign-in button should exist"
56
)
57
+
58
+ // Check for Apple sign-in button
59
+ let appleButton = app.buttons["sign-in-with-apple-button"]
60
+ XCTAssertTrue(
61
+ appleButton.waitForExistence(timeout: 5),
62
+ "Apple sign-in button should exist"
63
+ )
64
65
// Check for Google sign-in button
66
let googleButton = app.buttons["sign-in-with-google-button"]
0 commit comments