mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 10:03:18 +00:00 
			
		
		
		
	 c51b495544
			
		
	
	
		c51b495544
		
			
		
	
	
	
	
		
			
			* feat: support appflowy cloud in sign-in settings page * test: add cloud server test * test: wait until the tooltip disappear
		
			
				
	
	
		
			16 lines
		
	
	
		
			551 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			551 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:integration_test/integration_test.dart';
 | |
| 
 | |
| import 'notifications_settings_test.dart' as notifications_settings_test;
 | |
| import 'settings_billing_test.dart' as settings_billing_test;
 | |
| import 'shortcuts_settings_test.dart' as shortcuts_settings_test;
 | |
| import 'sign_in_page_settings_test.dart' as sign_in_page_settings_test;
 | |
| 
 | |
| void main() {
 | |
|   IntegrationTestWidgetsFlutterBinding.ensureInitialized();
 | |
| 
 | |
|   notifications_settings_test.main();
 | |
|   settings_billing_test.main();
 | |
|   shortcuts_settings_test.main();
 | |
|   sign_in_page_settings_test.main();
 | |
| }
 |