mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-07 04:29:29 +01:00
10 lines
306 B
Dart
10 lines
306 B
Dart
import 'package:fluffychat/pages/sign_up.dart';
|
|
import 'package:fluffychat/main.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('Test if the widget can be created', (WidgetTester tester) async {
|
|
await tester.pumpWidget(FluffyChatApp(testWidget: SignUp()));
|
|
});
|
|
}
|