forked from aws-amplify/amplify-flutter
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(authenticator): add golden tests for new configs (aws-amplify#1831)
* chore: add stubs for auth cognito and amplify * test: refactor tests, add tests for new configs * chore: regenerate golden files * chore: update comment, fix accidential cmd f change * chore: add license headers * chore: make internal mocks private
- Loading branch information
1 parent
bc57d1d
commit 263eeb7
Showing
149 changed files
with
1,022 additions
and
316 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
packages/amplify_authenticator/test/ui/authenticator_app.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// ignore_for_file: diagnostic_describe_all_properties | ||
|
||
import 'package:amplify_authenticator/amplify_authenticator.dart'; | ||
import 'package:amplify_flutter/amplify_flutter.dart'; | ||
import 'package:amplify_test/amplify_test.dart'; | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
|
||
const authenticatorKey = Key('authenticator_app'); | ||
final authenticatorFinder = find.byKey(authenticatorKey); | ||
|
||
/// Authenticator Test App, using Amplify and Auth stubs. | ||
class AuthenticatorApp extends StatefulWidget { | ||
const AuthenticatorApp({ | ||
Key? key, | ||
required this.config, | ||
this.lightTheme, | ||
this.darkTheme, | ||
this.initialStep = AuthenticatorStep.signIn, | ||
}) : super(key: key); | ||
|
||
final String config; | ||
final ThemeData? lightTheme; | ||
final ThemeData? darkTheme; | ||
final AuthenticatorStep initialStep; | ||
|
||
@override | ||
State<AuthenticatorApp> createState() => _AuthenticatorAppState(); | ||
} | ||
|
||
class _AuthenticatorAppState extends State<AuthenticatorApp> { | ||
Future<void> _configureAmplify() async { | ||
try { | ||
Amplify = AmplifyStub(); | ||
await Amplify.addPlugin(AmplifyAuthCognitoStub()); | ||
await Amplify.configure(widget.config); | ||
} on Exception catch (e) { | ||
print(e); | ||
} | ||
} | ||
|
||
@override | ||
void initState() { | ||
_configureAmplify(); | ||
super.initState(); | ||
} | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Authenticator( | ||
initialStep: widget.initialStep, | ||
key: authenticatorKey, | ||
child: MaterialApp( | ||
debugShowCheckedModeBanner: false, | ||
theme: widget.lightTheme, | ||
darkTheme: widget.darkTheme, | ||
themeMode: ThemeMode.system, | ||
builder: Authenticator.builder(), | ||
home: const SizedBox.shrink(), | ||
), | ||
); | ||
} | ||
} |
36 changes: 0 additions & 36 deletions
36
packages/amplify_authenticator/test/ui/configs/default_config.dart
This file was deleted.
Oops, something went wrong.
53 changes: 53 additions & 0 deletions
53
packages/amplify_authenticator/test/ui/configs/email_config.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
const emailConfig = ''' { | ||
"UserAgent": "aws-amplify-cli/2.0", | ||
"Version": "1.0", | ||
"auth": { | ||
"plugins": { | ||
"awsCognitoAuthPlugin": { | ||
"UserAgent": "aws-amplify-cli/0.1.0", | ||
"Version": "0.1.0", | ||
"IdentityManager": { | ||
"Default": {} | ||
}, | ||
"CredentialsProvider": { | ||
"CognitoIdentity": { | ||
"Default": { | ||
"PoolId": "", | ||
"Region": "" | ||
} | ||
} | ||
}, | ||
"CognitoUserPool": { | ||
"Default": { | ||
"PoolId": "", | ||
"AppClientId": "", | ||
"Region": "" | ||
} | ||
}, | ||
"Auth": { | ||
"Default": { | ||
"authenticationFlowType": "USER_SRP_AUTH", | ||
"socialProviders": [], | ||
"usernameAttributes": [ | ||
"EMAIL" | ||
], | ||
"signupAttributes": [ | ||
"EMAIL" | ||
], | ||
"passwordProtectionSettings": { | ||
"passwordPolicyMinLength": 8, | ||
"passwordPolicyCharacters": [] | ||
}, | ||
"mfaConfiguration": "OFF", | ||
"mfaTypes": [ | ||
"SMS" | ||
], | ||
"verificationMechanisms": [ | ||
"EMAIL" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}'''; |
53 changes: 53 additions & 0 deletions
53
packages/amplify_authenticator/test/ui/configs/phone_config.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
const phoneNumberConfig = ''' { | ||
"UserAgent": "aws-amplify-cli/2.0", | ||
"Version": "1.0", | ||
"auth": { | ||
"plugins": { | ||
"awsCognitoAuthPlugin": { | ||
"UserAgent": "aws-amplify-cli/0.1.0", | ||
"Version": "0.1.0", | ||
"IdentityManager": { | ||
"Default": {} | ||
}, | ||
"CredentialsProvider": { | ||
"CognitoIdentity": { | ||
"Default": { | ||
"PoolId": "", | ||
"Region": "" | ||
} | ||
} | ||
}, | ||
"CognitoUserPool": { | ||
"Default": { | ||
"PoolId": "", | ||
"AppClientId": "", | ||
"Region": "" | ||
} | ||
}, | ||
"Auth": { | ||
"Default": { | ||
"authenticationFlowType": "USER_SRP_AUTH", | ||
"socialProviders": [], | ||
"usernameAttributes": [ | ||
"PHONE_NUMBER" | ||
], | ||
"signupAttributes": [ | ||
"EMAIL" | ||
], | ||
"passwordProtectionSettings": { | ||
"passwordPolicyMinLength": 8, | ||
"passwordPolicyCharacters": [] | ||
}, | ||
"mfaConfiguration": "OFF", | ||
"mfaTypes": [ | ||
"SMS" | ||
], | ||
"verificationMechanisms": [ | ||
"EMAIL" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}'''; |
71 changes: 71 additions & 0 deletions
71
packages/amplify_authenticator/test/ui/configs/social_providers_config.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
const socialProviderConfig = ''' { | ||
"UserAgent": "aws-amplify-cli/2.0", | ||
"Version": "1.0", | ||
"auth": { | ||
"plugins": { | ||
"awsCognitoAuthPlugin": { | ||
"UserAgent": "aws-amplify-cli/0.1.0", | ||
"Version": "0.1.0", | ||
"IdentityManager": { | ||
"Default": {} | ||
}, | ||
"CredentialsProvider": { | ||
"CognitoIdentity": { | ||
"Default": { | ||
"PoolId": "", | ||
"Region": "" | ||
} | ||
} | ||
}, | ||
"CognitoUserPool": { | ||
"Default": { | ||
"PoolId": "", | ||
"AppClientId": "", | ||
"Region": "" | ||
} | ||
}, | ||
"Auth": { | ||
"Default": { | ||
"OAuth": { | ||
"WebDomain": "", | ||
"AppClientId": "", | ||
"SignInRedirectURI": "", | ||
"SignOutRedirectURI": "", | ||
"Scopes": [ | ||
"phone", | ||
"email", | ||
"openid", | ||
"profile", | ||
"aws.cognito.signin.user.admin" | ||
] | ||
}, | ||
"authenticationFlowType": "USER_SRP_AUTH", | ||
"socialProviders": [ | ||
"APPLE", | ||
"AMAZON", | ||
"FACEBOOK", | ||
"GOOGLE" | ||
], | ||
"usernameAttributes": [ | ||
"EMAIL" | ||
], | ||
"signupAttributes": [ | ||
"EMAIL" | ||
], | ||
"passwordProtectionSettings": { | ||
"passwordPolicyMinLength": 8, | ||
"passwordPolicyCharacters": [] | ||
}, | ||
"mfaConfiguration": "OFF", | ||
"mfaTypes": [ | ||
"SMS" | ||
], | ||
"verificationMechanisms": [ | ||
"EMAIL" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}'''; |
53 changes: 53 additions & 0 deletions
53
packages/amplify_authenticator/test/ui/configs/username_with_attributes.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
const usernameWithAttributesConfig = ''' { | ||
"UserAgent": "aws-amplify-cli/2.0", | ||
"Version": "1.0", | ||
"auth": { | ||
"plugins": { | ||
"awsCognitoAuthPlugin": { | ||
"UserAgent": "aws-amplify-cli/0.1.0", | ||
"Version": "0.1.0", | ||
"IdentityManager": { | ||
"Default": {} | ||
}, | ||
"CredentialsProvider": { | ||
"CognitoIdentity": { | ||
"Default": { | ||
"PoolId": "", | ||
"Region": "" | ||
} | ||
} | ||
}, | ||
"CognitoUserPool": { | ||
"Default": { | ||
"PoolId": "", | ||
"AppClientId": "", | ||
"Region": "" | ||
} | ||
}, | ||
"Auth": { | ||
"Default": { | ||
"authenticationFlowType": "USER_SRP_AUTH", | ||
"socialProviders": [], | ||
"usernameAttributes": [], | ||
"signupAttributes": [ | ||
"EMAIL", | ||
"PREFERRED_USERNAME", | ||
"BIRTHDATE" | ||
], | ||
"passwordProtectionSettings": { | ||
"passwordPolicyMinLength": 8, | ||
"passwordPolicyCharacters": [] | ||
}, | ||
"mfaConfiguration": "OFF", | ||
"mfaTypes": [ | ||
"SMS" | ||
], | ||
"verificationMechanisms": [ | ||
"EMAIL" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}'''; |
Binary file removed
BIN
-3.93 KB
.../amplify_authenticator/test/ui/goldens/tab_view_default_config_dark_default.png
Binary file not shown.
Binary file removed
BIN
-3.95 KB
...fy_authenticator/test/ui/goldens/tab_view_default_config_dark_high_contrast.png
Binary file not shown.
Binary file removed
BIN
-3.96 KB
...amplify_authenticator/test/ui/goldens/tab_view_default_config_dark_override.png
Binary file not shown.
Binary file removed
BIN
-3.92 KB
...s/amplify_authenticator/test/ui/goldens/tab_view_default_config_dark_swatch.png
Binary file not shown.
Binary file removed
BIN
-3.88 KB
...amplify_authenticator/test/ui/goldens/tab_view_default_config_light_default.png
Binary file not shown.
Binary file removed
BIN
-3.79 KB
...y_authenticator/test/ui/goldens/tab_view_default_config_light_high_contrast.png
Binary file not shown.
Binary file removed
BIN
-3.92 KB
...mplify_authenticator/test/ui/goldens/tab_view_default_config_light_override.png
Binary file not shown.
Binary file removed
BIN
-3.88 KB
.../amplify_authenticator/test/ui/goldens/tab_view_default_config_light_swatch.png
Binary file not shown.
Binary file removed
BIN
-4.37 KB
...y_authenticator/test/ui/goldens/tab_view_email_or_phone_config_dark_default.png
Binary file not shown.
Binary file removed
BIN
-4.41 KB
...enticator/test/ui/goldens/tab_view_email_or_phone_config_dark_high_contrast.png
Binary file not shown.
Binary file removed
BIN
-4.42 KB
..._authenticator/test/ui/goldens/tab_view_email_or_phone_config_dark_override.png
Binary file not shown.
Binary file removed
BIN
-4.38 KB
...fy_authenticator/test/ui/goldens/tab_view_email_or_phone_config_dark_swatch.png
Binary file not shown.
Binary file removed
BIN
-4.33 KB
..._authenticator/test/ui/goldens/tab_view_email_or_phone_config_light_default.png
Binary file not shown.
Binary file removed
BIN
-4.23 KB
...nticator/test/ui/goldens/tab_view_email_or_phone_config_light_high_contrast.png
Binary file not shown.
Binary file removed
BIN
-4.37 KB
...authenticator/test/ui/goldens/tab_view_email_or_phone_config_light_override.png
Binary file not shown.
Binary file removed
BIN
-4.32 KB
...y_authenticator/test/ui/goldens/tab_view_email_or_phone_config_light_swatch.png
Binary file not shown.
Binary file added
BIN
+29.7 KB
...nticator/test/ui/goldens/theme_emailOrPhone_resetPassword_dark_mode_default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+29.8 KB
...or/test/ui/goldens/theme_emailOrPhone_resetPassword_dark_mode_high_contrast.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+29.7 KB
...ticator/test/ui/goldens/theme_emailOrPhone_resetPassword_dark_mode_override.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+29 KB
...enticator/test/ui/goldens/theme_emailOrPhone_resetPassword_dark_mode_swatch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+29.8 KB
...ticator/test/ui/goldens/theme_emailOrPhone_resetPassword_light_mode_default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+29.7 KB
...r/test/ui/goldens/theme_emailOrPhone_resetPassword_light_mode_high_contrast.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+29.8 KB
...icator/test/ui/goldens/theme_emailOrPhone_resetPassword_light_mode_override.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+29.8 KB
...nticator/test/ui/goldens/theme_emailOrPhone_resetPassword_light_mode_swatch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+30.6 KB
...y_authenticator/test/ui/goldens/theme_emailOrPhone_signIn_dark_mode_default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+30.7 KB
...enticator/test/ui/goldens/theme_emailOrPhone_signIn_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30.6 KB
..._authenticator/test/ui/goldens/theme_emailOrPhone_signIn_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+29.9 KB
...fy_authenticator/test/ui/goldens/theme_emailOrPhone_signIn_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+30.7 KB
..._authenticator/test/ui/goldens/theme_emailOrPhone_signIn_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30.5 KB
...nticator/test/ui/goldens/theme_emailOrPhone_signIn_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30.7 KB
...authenticator/test/ui/goldens/theme_emailOrPhone_signIn_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+30.7 KB
...y_authenticator/test/ui/goldens/theme_emailOrPhone_signIn_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+31.2 KB
...y_authenticator/test/ui/goldens/theme_emailOrPhone_signUp_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+31.2 KB
...enticator/test/ui/goldens/theme_emailOrPhone_signUp_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+31.2 KB
..._authenticator/test/ui/goldens/theme_emailOrPhone_signUp_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+30.5 KB
...fy_authenticator/test/ui/goldens/theme_emailOrPhone_signUp_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+31.3 KB
..._authenticator/test/ui/goldens/theme_emailOrPhone_signUp_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+31.1 KB
...nticator/test/ui/goldens/theme_emailOrPhone_signUp_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+31.3 KB
...authenticator/test/ui/goldens/theme_emailOrPhone_signUp_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+31.3 KB
...y_authenticator/test/ui/goldens/theme_emailOrPhone_signUp_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...y_authenticator/test/ui/goldens/theme_email_resetPassword_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...enticator/test/ui/goldens/theme_email_resetPassword_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
..._authenticator/test/ui/goldens/theme_email_resetPassword_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+28.4 KB
...fy_authenticator/test/ui/goldens/theme_email_resetPassword_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
..._authenticator/test/ui/goldens/theme_email_resetPassword_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+29 KB
...nticator/test/ui/goldens/theme_email_resetPassword_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...authenticator/test/ui/goldens/theme_email_resetPassword_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...y_authenticator/test/ui/goldens/theme_email_resetPassword_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+29.9 KB
.../amplify_authenticator/test/ui/goldens/theme_email_signIn_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30 KB
...fy_authenticator/test/ui/goldens/theme_email_signIn_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+29.9 KB
...amplify_authenticator/test/ui/goldens/theme_email_signIn_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+29.3 KB
...s/amplify_authenticator/test/ui/goldens/theme_email_signIn_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+30 KB
...amplify_authenticator/test/ui/goldens/theme_email_signIn_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+29.8 KB
...y_authenticator/test/ui/goldens/theme_email_signIn_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30 KB
...mplify_authenticator/test/ui/goldens/theme_email_signIn_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+30 KB
.../amplify_authenticator/test/ui/goldens/theme_email_signIn_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+30.2 KB
.../amplify_authenticator/test/ui/goldens/theme_email_signUp_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30.2 KB
...fy_authenticator/test/ui/goldens/theme_email_signUp_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30.2 KB
...amplify_authenticator/test/ui/goldens/theme_email_signUp_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+29.5 KB
...s/amplify_authenticator/test/ui/goldens/theme_email_signUp_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+30.3 KB
...amplify_authenticator/test/ui/goldens/theme_email_signUp_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30.1 KB
...y_authenticator/test/ui/goldens/theme_email_signUp_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30.3 KB
...mplify_authenticator/test/ui/goldens/theme_email_signUp_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+30.3 KB
.../amplify_authenticator/test/ui/goldens/theme_email_signUp_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+29.3 KB
...enticator/test/ui/goldens/theme_phoneNumber_resetPassword_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+29.4 KB
...tor/test/ui/goldens/theme_phoneNumber_resetPassword_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+29.3 KB
...nticator/test/ui/goldens/theme_phoneNumber_resetPassword_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+28.7 KB
...henticator/test/ui/goldens/theme_phoneNumber_resetPassword_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+29.4 KB
...nticator/test/ui/goldens/theme_phoneNumber_resetPassword_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+29.3 KB
...or/test/ui/goldens/theme_phoneNumber_resetPassword_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+29.4 KB
...ticator/test/ui/goldens/theme_phoneNumber_resetPassword_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+29.4 KB
...enticator/test/ui/goldens/theme_phoneNumber_resetPassword_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+30.2 KB
...fy_authenticator/test/ui/goldens/theme_phoneNumber_signIn_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30.3 KB
...henticator/test/ui/goldens/theme_phoneNumber_signIn_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30.2 KB
...y_authenticator/test/ui/goldens/theme_phoneNumber_signIn_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+29.6 KB
...ify_authenticator/test/ui/goldens/theme_phoneNumber_signIn_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+30.3 KB
...y_authenticator/test/ui/goldens/theme_phoneNumber_signIn_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30.1 KB
...enticator/test/ui/goldens/theme_phoneNumber_signIn_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30.3 KB
..._authenticator/test/ui/goldens/theme_phoneNumber_signIn_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+30.3 KB
...fy_authenticator/test/ui/goldens/theme_phoneNumber_signIn_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+30.6 KB
...fy_authenticator/test/ui/goldens/theme_phoneNumber_signUp_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30.6 KB
...henticator/test/ui/goldens/theme_phoneNumber_signUp_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30.6 KB
...y_authenticator/test/ui/goldens/theme_phoneNumber_signUp_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+29.9 KB
...ify_authenticator/test/ui/goldens/theme_phoneNumber_signUp_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+30.7 KB
...y_authenticator/test/ui/goldens/theme_phoneNumber_signUp_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30.5 KB
...enticator/test/ui/goldens/theme_phoneNumber_signUp_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30.6 KB
..._authenticator/test/ui/goldens/theme_phoneNumber_signUp_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+30.7 KB
...fy_authenticator/test/ui/goldens/theme_phoneNumber_signUp_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...icator/test/ui/goldens/theme_socialProvider_resetPassword_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
.../test/ui/goldens/theme_socialProvider_resetPassword_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...cator/test/ui/goldens/theme_socialProvider_resetPassword_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+28.4 KB
...ticator/test/ui/goldens/theme_socialProvider_resetPassword_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...cator/test/ui/goldens/theme_socialProvider_resetPassword_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+29 KB
...test/ui/goldens/theme_socialProvider_resetPassword_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...ator/test/ui/goldens/theme_socialProvider_resetPassword_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...icator/test/ui/goldens/theme_socialProvider_resetPassword_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+34.5 KB
...authenticator/test/ui/goldens/theme_socialProvider_signIn_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+36.3 KB
...ticator/test/ui/goldens/theme_socialProvider_signIn_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+36.2 KB
...uthenticator/test/ui/goldens/theme_socialProvider_signIn_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+35.4 KB
..._authenticator/test/ui/goldens/theme_socialProvider_signIn_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+36.4 KB
...uthenticator/test/ui/goldens/theme_socialProvider_signIn_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+36.1 KB
...icator/test/ui/goldens/theme_socialProvider_signIn_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+36.4 KB
...thenticator/test/ui/goldens/theme_socialProvider_signIn_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+36.3 KB
...authenticator/test/ui/goldens/theme_socialProvider_signIn_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+30.2 KB
...authenticator/test/ui/goldens/theme_socialProvider_signUp_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30.2 KB
...ticator/test/ui/goldens/theme_socialProvider_signUp_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30.2 KB
...uthenticator/test/ui/goldens/theme_socialProvider_signUp_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+29.5 KB
..._authenticator/test/ui/goldens/theme_socialProvider_signUp_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+30.3 KB
...uthenticator/test/ui/goldens/theme_socialProvider_signUp_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30.1 KB
...icator/test/ui/goldens/theme_socialProvider_signUp_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30.3 KB
...thenticator/test/ui/goldens/theme_socialProvider_signUp_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+30.3 KB
...authenticator/test/ui/goldens/theme_socialProvider_signUp_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...est/ui/goldens/theme_usernameWithAttributes_resetPassword_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
.../goldens/theme_usernameWithAttributes_resetPassword_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...st/ui/goldens/theme_usernameWithAttributes_resetPassword_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+28.4 KB
...test/ui/goldens/theme_usernameWithAttributes_resetPassword_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...st/ui/goldens/theme_usernameWithAttributes_resetPassword_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+29 KB
...goldens/theme_usernameWithAttributes_resetPassword_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
...t/ui/goldens/theme_usernameWithAttributes_resetPassword_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+29.2 KB
...est/ui/goldens/theme_usernameWithAttributes_resetPassword_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+29.9 KB
...cator/test/ui/goldens/theme_usernameWithAttributes_signIn_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30 KB
...test/ui/goldens/theme_usernameWithAttributes_signIn_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+29.9 KB
...ator/test/ui/goldens/theme_usernameWithAttributes_signIn_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+29.3 KB
...icator/test/ui/goldens/theme_usernameWithAttributes_signIn_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+30 KB
...ator/test/ui/goldens/theme_usernameWithAttributes_signIn_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+29.8 KB
...est/ui/goldens/theme_usernameWithAttributes_signIn_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30 KB
...tor/test/ui/goldens/theme_usernameWithAttributes_signIn_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+30 KB
...cator/test/ui/goldens/theme_usernameWithAttributes_signIn_light_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+30.9 KB
...cator/test/ui/goldens/theme_usernameWithAttributes_signUp_dark_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30.9 KB
...test/ui/goldens/theme_usernameWithAttributes_signUp_dark_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30.9 KB
...ator/test/ui/goldens/theme_usernameWithAttributes_signUp_dark_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+30.2 KB
...icator/test/ui/goldens/theme_usernameWithAttributes_signUp_dark_mode_swatch.png
Oops, something went wrong.
Binary file added
BIN
+31 KB
...ator/test/ui/goldens/theme_usernameWithAttributes_signUp_light_mode_default.png
Oops, something went wrong.
Binary file added
BIN
+30.8 KB
...est/ui/goldens/theme_usernameWithAttributes_signUp_light_mode_high_contrast.png
Oops, something went wrong.
Binary file added
BIN
+30.9 KB
...tor/test/ui/goldens/theme_usernameWithAttributes_signUp_light_mode_override.png
Oops, something went wrong.
Binary file added
BIN
+30.9 KB
...cator/test/ui/goldens/theme_usernameWithAttributes_signUp_light_mode_swatch.png
Oops, something went wrong.
Oops, something went wrong.