mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-30 17:38:40 +00:00 
			
		
		
		
	 f8ce501b53
			
		
	
	
		f8ce501b53
		
			
		
	
	
	
	
		
			
			* chore: fix anon user integration test * chore: fix env * chore: appflowy cloud version * chore: appflowy cloud version
		
			
				
	
	
		
			26 lines
		
	
	
		
			743 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			743 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'document/document_test_runner.dart' as document_test_runner;
 | |
| import 'sidebar/sidebar_move_page_test.dart' as sidebar_move_page_test;
 | |
| import 'uncategorized/uncategorized_test_runner.dart'
 | |
|     as uncategorized_test_runner;
 | |
| import 'workspace/workspace_test_runner.dart' as workspace_test_runner;
 | |
| import 'data_migration/data_migration_test_runner.dart'
 | |
|     as data_migration_test_runner;
 | |
| import 'set_env.dart' as preset_af_cloud_env_test;
 | |
| 
 | |
| Future<void> main() async {
 | |
|   preset_af_cloud_env_test.main();
 | |
| 
 | |
|   data_migration_test_runner.main();
 | |
|   // uncategorized
 | |
|   uncategorized_test_runner.main();
 | |
| 
 | |
|   // workspace
 | |
|   workspace_test_runner.main();
 | |
| 
 | |
|   // document
 | |
|   document_test_runner.main();
 | |
| 
 | |
|   // sidebar
 | |
|   sidebar_move_page_test.main();
 | |
| }
 |