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

* fix: paste multiple lines in codeblock * fix: works with non collapsed selection * chore: localize code block * test: multiline paste in codeblock * chore: remove unused import * fix: only hanlde code block paste command if all the selected nodes are code block --------- Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io>
31 lines
1.3 KiB
Dart
31 lines
1.3 KiB
Dart
import 'package:integration_test/integration_test.dart';
|
|
|
|
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;
|
|
import 'document_with_toggle_list_test.dart' as document_with_toggle_list_test;
|
|
import 'edit_document_test.dart' as document_edit_test;
|
|
import 'document_with_outline_block_test.dart' as document_with_outline_block;
|
|
import 'document_copy_and_paste_test.dart' as document_copy_and_paste_test;
|
|
import 'document_codeblock_paste_test.dart' as document_codeblock_paste_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();
|
|
document_with_outline_block.main();
|
|
document_with_toggle_list_test.main();
|
|
document_copy_and_paste_test.main();
|
|
document_codeblock_paste_test.main();
|
|
}
|