mirror of
https://github.com/xvrh/lottie-flutter.git
synced 2025-08-06 16:39:36 +08:00
10 lines
222 B
Dart
10 lines
222 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:lottie_example/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('Main sample', (tester) async {
|
|
await tester.pumpWidget(App());
|
|
await tester.pump();
|
|
});
|
|
}
|