mirror of
https://github.com/janoodleFTW/timy-messenger.git
synced 2026-01-23 02:14:39 +00:00
10 lines
267 B
Dart
10 lines
267 B
Dart
import "package:circles_app/circles_app.dart";
|
|
import "package:flutter_test/flutter_test.dart";
|
|
|
|
void main() {
|
|
testWidgets("App loads test", (WidgetTester tester) async {
|
|
// Build our app and trigger a frame.
|
|
await tester.pumpWidget(CirclesApp());
|
|
|
|
});
|
|
}
|