2024-03-07 12:48:51 +08:00
|
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
|
2024-10-29 14:55:20 +08:00
|
|
|
import 'desktop/document/document_test_runner_1.dart' as document_test_runner_1;
|
2024-03-07 12:48:51 +08:00
|
|
|
import 'desktop/uncategorized/switch_folder_test.dart' as switch_folder_test;
|
|
|
|
|
|
|
|
Future<void> main() async {
|
|
|
|
await runIntegration1OnDesktop();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> runIntegration1OnDesktop() async {
|
|
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
|
|
|
|
switch_folder_test.main();
|
2024-10-29 14:55:20 +08:00
|
|
|
document_test_runner_1.main();
|
2024-10-08 14:29:07 +08:00
|
|
|
// DON'T add more tests here.
|
2024-03-07 12:48:51 +08:00
|
|
|
}
|