2023-04-04 04:50:22 +00:00
|
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
|
|
|
|
import 'switch_folder_test.dart' as switch_folder_test;
|
2023-06-05 05:10:14 +00:00
|
|
|
import 'document_test.dart' as document_test;
|
2023-06-11 06:19:44 +00:00
|
|
|
import 'cover_image_test.dart' as cover_image_test;
|
2023-06-12 06:36:55 +00:00
|
|
|
import 'share_markdown_test.dart' as share_markdown_test;
|
|
|
|
import 'import_files_test.dart' as import_files_test;
|
2023-06-15 08:33:44 +00:00
|
|
|
import 'document_with_database_test.dart' as document_with_database_test;
|
2023-04-04 04:50:22 +00:00
|
|
|
|
|
|
|
/// The main task runner for all integration tests in AppFlowy.
|
|
|
|
///
|
|
|
|
/// Having a single entrypoint for integration tests is necessary due to an
|
|
|
|
/// [issue caused by switching files with integration testing](https://github.com/flutter/flutter/issues/101031).
|
|
|
|
/// If flutter/flutter#101031 is resolved, this file can be removed completely.
|
|
|
|
/// Once removed, the integration_test.yaml must be updated to exclude this as
|
|
|
|
/// as the test target.
|
|
|
|
void main() {
|
|
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
switch_folder_test.main();
|
2023-06-11 06:19:44 +00:00
|
|
|
cover_image_test.main();
|
2023-06-05 05:10:14 +00:00
|
|
|
document_test.main();
|
2023-06-12 06:36:55 +00:00
|
|
|
share_markdown_test.main();
|
|
|
|
import_files_test.main();
|
2023-06-15 08:33:44 +00:00
|
|
|
document_with_database_test.main();
|
2023-06-11 06:19:44 +00:00
|
|
|
// board_test.main();
|
|
|
|
// empty_document_test.main();
|
|
|
|
// smart_menu_test.main();
|
2023-04-04 04:50:22 +00:00
|
|
|
}
|