mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-09 21:49:31 +01:00
17 lines
438 B
Dart
17 lines
438 B
Dart
|
import 'package:fluffychat/controllers/sign_up_password_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: SignUpPassword(
|
||
|
'test_user',
|
||
|
displayname: 'Test User',
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
});
|
||
|
}
|