Skip to content

Commit

Permalink
test fails due to overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ethan-tbd committed Jan 26, 2024
1 parent a781cd7 commit 2b569e9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions frontend/test/features/deposit/deposit_page_test.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import 'package:flutter_starter/features/deposit/deposit_page.dart';
import 'package:flutter_test/flutter_test.dart';

import '../../helpers/widget_helpers.dart';

void main() {
group('DepositPage', () {
testWidgets('should show you deposit', (tester) async {
await tester.pumpWidget(
WidgetHelpers.testableWidget(child: const DepositPage()),
);

expect(find.text('You deposit'), findsOneWidget);
});
});
}

0 comments on commit 2b569e9

Please sign in to comment.