Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions alfie_flutter/integration_test/checkout_integration_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ void main() {
);
await tester.enterText(
find.byKey(const Key('contact_phone_field')),
'+1234567890',
'+44 7700 900000',
);

FocusManager.instance.primaryFocus?.unfocus();
Expand Down Expand Up @@ -232,7 +232,7 @@ void main() {
firstName: 'John',
lastName: 'Doe',
email: 'john@example.com',
phoneNumber: '+1234567890',
phoneNumber: '+44 7700 900000',
),
);
checkoutVM.setDeliveryAddress(
Expand Down Expand Up @@ -324,7 +324,7 @@ void main() {
firstName: 'John',
lastName: 'Doe',
email: 'john@example.com',
phoneNumber: '+1234567890',
phoneNumber: '+44 7700 900000',
),
);
checkoutVM.setDeliveryAddress(
Expand Down Expand Up @@ -412,7 +412,7 @@ void main() {
);
await tester.enterText(
find.byKey(const Key('contact_phone_field')),
'+1234567890',
'+44 7700 900000',
);
await tester.pumpAndSettle();

Expand Down Expand Up @@ -471,7 +471,7 @@ void main() {
);
await tester.enterText(
find.byKey(const Key('contact_phone_field')),
'+1234567890',
'+44 7700 900000',
);
await tester.pumpAndSettle();
await tester.tap(find.widgetWithText(ElevatedButton, 'Continue').first);
Expand Down