trim whitespace in screenshot golds
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
erinn 2021-03-31 17:14:25 -07:00
parent 0ed29690e2
commit d82ba4924c
8 changed files with 2 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -26,6 +26,7 @@ String file(String slug) {
void main() {
testWidgets('Textfield widget test', (WidgetTester tester) async {
tester.binding.window.physicalSizeTestValue = Size(800, 300);
final TextEditingController ctrlr1 = TextEditingController();
Widget testWidget = CwtchTextField(controller: ctrlr1);
@ -61,6 +62,7 @@ void main() {
//=\\
testWidgets('Textfield form validation test', (WidgetTester tester) async {
tester.binding.window.physicalSizeTestValue = Size(800, 300);
final formKey = GlobalKey<FormState>();
final TextEditingController ctrlr1 = TextEditingController();
final String strLabel1 = "Age (*Required)";