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 6457031 commit cf46d14Copy full SHA for cf46d14
FirebaseVertexAI/Tests/TestApp/Tests/Integration/IntegrationTests.swift
@@ -45,6 +45,13 @@ final class IntegrationTests: XCTestCase {
45
var userID1 = ""
46
47
override func setUp() async throws {
48
+ let environment = ProcessInfo.processInfo.environment
49
+ if environment["FIRAAppCheckDebugToken"] == nil {
50
+ XCTFail("No App Check debug token provided in FIRAAppCheckDebugToken.")
51
+ } else {
52
+ XCTFail("App Check debug token provided; failing to check that tests are running.")
53
+ }
54
+
55
let authResult = try await Auth.auth().signIn(
56
withEmail: Credentials.emailAddress1,
57
password: Credentials.emailPassword1
0 commit comments