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 efa9bd9 commit 156df40Copy full SHA for 156df40
Example/InstanceID/IntegrationTests/FIRInstanceIDIntegrationTests.m
@@ -14,6 +14,11 @@
14
* limitations under the License.
15
*/
16
17
+// macOS requests a user password when accessing the Keychain for the first time,
18
+// so the tests may fail. Disable integration tests on macOS so far.
19
+// TODO: Configure the tests to run on macOS without requesting the keychain password.
20
+#if !TARGET_OS_OSX
21
+
22
#import <XCTest/XCTest.h>
23
24
#import <FirebaseCore/FirebaseCore.h>
@@ -171,3 +176,5 @@ - (BOOL)isDefaultAppConfigured {
171
176
}
172
177
173
178
@end
179
180
+#endif // !TARGET_OS_OSX
0 commit comments