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 339835d commit 8320499Copy full SHA for 8320499
packages/firebase_ui_auth/test/flows/phone_auth_flow_test.dart
@@ -319,8 +319,14 @@ void main() {
319
ctrl.acceptPhoneNumber('+123456789');
320
321
final invocation = verify(
322
- provider.sendVerificationCode(phoneNumber: captureAny),
323
- );
+ provider.sendVerificationCode(
+ phoneNumber: captureAnyNamed('phoneNumber'),
324
+ action: anyNamed('action'),
325
+ forceResendingToken: anyNamed('forceResendingToken'),
326
+ hint: anyNamed('hint'),
327
+ multiFactorSession: anyNamed('multiFactorSession'),
328
+ ),
329
+ )..called(1);
330
331
expect(invocation.callCount, 1);
332
expect(invocation.captured, ['+123456789']);
0 commit comments