This commit is contained in:
2026-04-25 16:36:34 +08:00
commit db90e7579b
1876 changed files with 189777 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:sales_chat/services/api_service.dart';
import 'package:sales_chat/main.dart';
void main() {
testWidgets('App starts with login page', (WidgetTester tester) async {
final apiService = ApiService();
await tester.pumpWidget(MyApp(apiService: apiService));
// The app should start with the login page
expect(find.text('Sales Chat'), findsWidgets);
});
}