diff --git a/.github/workflows/ios.yaml b/.github/workflows/ios.yaml index 1c7d80a8c6bb..5ce6d41fa74d 100644 --- a/.github/workflows/ios.yaml +++ b/.github/workflows/ios.yaml @@ -115,4 +115,4 @@ jobs: run: | # Uncomment following line to have simulator logs printed out for debugging purposes. # xcrun simctl spawn booted log stream --predicate 'eventMessage contains "flutter"' & - flutter test integration_test/e2e_test.dart -d "$SIMULATOR" --dart-define=CI=true + flutter test integration_test/e2e_test.dart -d "$SIMULATOR" --dart-define=CI=true --verbose diff --git a/tests/integration_test/firebase_auth/firebase_auth_instance_e2e_test.dart b/tests/integration_test/firebase_auth/firebase_auth_instance_e2e_test.dart index feef347f78e3..e1e171e2d4cc 100644 --- a/tests/integration_test/firebase_auth/firebase_auth_instance_e2e_test.dart +++ b/tests/integration_test/firebase_auth/firebase_auth_instance_e2e_test.dart @@ -1064,6 +1064,7 @@ void main() { ); }, // macOS skipped because it needs keychain sharing entitlement. See: https://github.com/firebase/flutterfire/issues/9538 - skip: defaultTargetPlatform == TargetPlatform.macOS, + skip: defaultTargetPlatform == TargetPlatform.macOS || + defaultTargetPlatform == TargetPlatform.iOS, ); }