refactor: Switch from maestro to flutter integration tests
This commit is contained in:
parent
c15be05246
commit
0a42f28cf1
34 changed files with 495 additions and 727 deletions
14
integration_test/mobile_test.dart
Normal file
14
integration_test/mobile_test.dart
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:integration_test/integration_test.dart';
|
||||
|
||||
import 'flows/basic_messaging.dart';
|
||||
import 'flows/login_and_chat_backup.dart';
|
||||
|
||||
void main() {
|
||||
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
||||
|
||||
group('FluffyChat Integration Tests', () {
|
||||
testWidgets('Login and logout flow', loginAndChatBackup);
|
||||
testWidgets('Basic Messaging', basicMessaging);
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue