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 0edfb9d commit 8ba528aCopy full SHA for 8ba528a
tests/integration_test/firebase_auth/firebase_auth_instance_e2e_test.dart
@@ -1045,6 +1045,19 @@ void main() {
1045
},
1046
skip: true,
1047
);
1048
+
1049
+ group(
1050
+ 'initializeRecaptchaConfig',
1051
+ () {
1052
+ test('initializeRecaptchaConfig completes without throwing',
1053
+ () async {
1054
+ // Skipping this test as initializeRecaptchaConfig is not supported
1055
+ // by the Firebase emulator suite.
1056
+ await FirebaseAuth.instance.initializeRecaptchaConfig();
1057
+ });
1058
+ },
1059
+ skip: true,
1060
+ );
1061
1062
// macOS skipped because it needs keychain sharing entitlement. See: https://github.com/firebase/flutterfire/issues/9538
1063
skip: defaultTargetPlatform == TargetPlatform.macOS,
0 commit comments