2023-07-09 10:03:22 +07:00
|
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
|
2023-08-30 17:21:32 +08:00
|
|
|
import 'document_alignment_test.dart' as document_alignment_test;
|
|
|
|
import 'document_codeblock_paste_test.dart' as document_codeblock_paste_test;
|
|
|
|
import 'document_copy_and_paste_test.dart' as document_copy_and_paste_test;
|
2023-07-09 10:03:22 +07:00
|
|
|
import 'document_create_and_delete_test.dart'
|
|
|
|
as document_create_and_delete_test;
|
|
|
|
import 'document_with_cover_image_test.dart' as document_with_cover_image_test;
|
|
|
|
import 'document_with_database_test.dart' as document_with_database_test;
|
|
|
|
import 'document_with_inline_math_equation_test.dart'
|
|
|
|
as document_with_inline_math_equation_test;
|
|
|
|
import 'document_with_inline_page_test.dart' as document_with_inline_page_test;
|
2023-08-30 17:21:32 +08:00
|
|
|
import 'document_with_outline_block_test.dart' as document_with_outline_block;
|
2023-07-18 09:45:20 +07:00
|
|
|
import 'document_with_toggle_list_test.dart' as document_with_toggle_list_test;
|
2023-07-09 10:03:22 +07:00
|
|
|
import 'edit_document_test.dart' as document_edit_test;
|
|
|
|
|
|
|
|
void startTesting() {
|
|
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
|
|
|
|
// Document integration tests
|
|
|
|
document_create_and_delete_test.main();
|
|
|
|
document_edit_test.main();
|
|
|
|
document_with_database_test.main();
|
|
|
|
document_with_inline_page_test.main();
|
|
|
|
document_with_inline_math_equation_test.main();
|
|
|
|
document_with_cover_image_test.main();
|
2023-07-18 14:59:41 +07:00
|
|
|
document_with_outline_block.main();
|
2023-07-18 09:45:20 +07:00
|
|
|
document_with_toggle_list_test.main();
|
2023-08-10 17:35:27 +07:00
|
|
|
document_copy_and_paste_test.main();
|
2023-08-30 07:28:56 +05:30
|
|
|
document_codeblock_paste_test.main();
|
2023-08-30 17:21:32 +08:00
|
|
|
document_alignment_test.main();
|
2023-07-09 10:03:22 +07:00
|
|
|
}
|