1
0
Fork 0

Fix linting

main
Jonas Franz 2 years ago
parent 74745f35a3
commit 19f613ce93
  1. 4
      test/efficiency_bechmark_test.dart

@ -30,14 +30,14 @@ void main() {
await tester.pumpAndSettle();
// toggle sign in button two times
final switchButton = find.byKey(Key('user_switch'));
final switchButton = find.byKey(const Key('user_switch'));
await tester.tap(switchButton);
await tester.pumpAndSettle();
await tester.tap(switchButton);
await tester.pumpAndSettle();
// go to cart
final cartButton = find.byKey(Key('cart_button'));
final cartButton = find.byKey(const Key('cart_button'));
await tester.tap(cartButton);
await tester.pumpAndSettle();
final header = find.text('Warenkorb');

Loading…
Cancel
Save