add a preview if longpressing preview

This commit is contained in:
2022-08-21 22:44:12 +02:00
parent 51b4d4b38d
commit 74e2afee98
10 changed files with 161 additions and 85 deletions

View File

@ -12,19 +12,6 @@ import 'package:openmediacentermobile/main.dart';
void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
// Verify that our counter starts at 0.
expect(find.text('0'), findsOneWidget);
expect(find.text('1'), findsNothing);
// Tap the '+' icon and trigger a frame.
await tester.tap(find.byIcon(Icons.add));
await tester.pump();
// Verify that our counter has incremented.
expect(find.text('0'), findsNothing);
expect(find.text('1'), findsOneWidget);
});
}