mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-20 02:59:26 +01:00
10 lines
323 B
Dart
10 lines
323 B
Dart
|
import 'package:fluffychat/controllers/sign_up_controller.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()));
|
||
|
});
|
||
|
}
|