mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 17:11:23 +00:00

* feat: split the integration tests into multiple runners * feat: use 6 runners * fix: name * fix: integration tests * fix: macos arm64 build * Revert "fix: macos arm64 build" This reverts commit 80b961361fac94b4d3801f8ca1964f0b8fac6331. * chore: use 7 runners * chore: use 8 runners
17 lines
490 B
Dart
17 lines
490 B
Dart
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'desktop/document/document_test_runner_1.dart' as document_test_runner_1;
|
|
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();
|
|
document_test_runner_1.main();
|
|
// DON'T add more tests here.
|
|
}
|