mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-01 01:29:28 +01:00
17 lines
433 B
Dart
17 lines
433 B
Dart
import 'package:fluffychat/pages/homeserver_picker.dart';
|
|
import 'package:fluffychat/main.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'utils/test_client.dart';
|
|
|
|
void main() {
|
|
testWidgets('Test if the widget can be created', (WidgetTester tester) async {
|
|
await tester.pumpWidget(
|
|
FluffyChatApp(
|
|
client: await prepareTestClient(),
|
|
testWidget: HomeserverPicker(),
|
|
),
|
|
);
|
|
});
|
|
}
|