Skip to content

Commit 8ba528a

Browse files
committed
chore: add test for initializeRecaptchaConfig
1 parent 0edfb9d commit 8ba528a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tests/integration_test/firebase_auth/firebase_auth_instance_e2e_test.dart

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,6 +1045,19 @@ void main() {
10451045
},
10461046
skip: true,
10471047
);
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+
);
10481061
},
10491062
// macOS skipped because it needs keychain sharing entitlement. See: https://github.com/firebase/flutterfire/issues/9538
10501063
skip: defaultTargetPlatform == TargetPlatform.macOS,

0 commit comments

Comments
 (0)