15 lines
474 B
Dart
15 lines
474 B
Dart
import 'package:client_proxy_framework/client_proxy_framework.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'package:funymee_ai/app.dart';
|
|
|
|
void main() {
|
|
TestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
testWidgets('App smoke test', (WidgetTester tester) async {
|
|
await ClientBootstrap.initFromAsset('assets/skin_config.json');
|
|
await tester.pumpWidget(const App(title: 'FunyMee AI'));
|
|
expect(find.text('FunyMee AI'), findsOneWidget);
|
|
});
|
|
}
|