mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 18:15:09 +00:00 
			
		
		
		
	
		
			
	
	
		
			23 lines
		
	
	
		
			895 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
		
		
			
		
	
	
			23 lines
		
	
	
		
			895 B
		
	
	
	
		
			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 '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(); | ||
|  | } |