Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzanardo committed Jan 2, 2024
1 parent b1ce08e commit ae91a3d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions widgetbook/test/widgetbook_test.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// ignore_for_file: prefer_const_constructors

import 'package:flutter_test/flutter_test.dart';
import 'package:widgetbook_app/widgetbook/widgetbook.dart';

void main() {
testWidgets('renders', (WidgetTester tester) async {
await tester.pumpWidget(WidgetbookApp());

expect(find.byType(WidgetbookApp), findsOneWidget);
});
}

0 comments on commit ae91a3d

Please sign in to comment.