mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 10:03:18 +00:00 
			
		
		
		
	 a0ed043cb8
			
		
	
	
		a0ed043cb8
		
			
		
	
	
	
	
		
			
			* feat: my account settings page * test: amend tests * chore: remove unused code * test: remove widget tests * fix: text color on select buttons * test: clean and remove unused test helpers * feat: settings workspace page * chore: fixes after merge * fix: recent views bugfix * fix: make sure text buttons have color * test: add test for delete workspace in settings * test: remove pumpAndSettle for create workspace * test: longer pump duration * test: attempt with large pump duration * test: attempt workaround * chore: clean code * fix: missing language key * test: add one more check * test: pump * test: more pump * test: attempt pumpAndSettle * chore: code review * fix: persist single workspace on patch * fix: listen to workspace changes * chore: remove redundant builder * test: remove unstable test * fix: changes after merge * chore: changes after merge * feat: support changing cursor and selection color * chore: move members up in menu * feat: clean code and beautify dialogs * fix: fix test and make show selected font --------- Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io>
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:integration_test/integration_test.dart';
 | |
| 
 | |
| import 'desktop/board/board_test_runner.dart' as board_test_runner;
 | |
| import 'desktop/settings/settings_runner.dart' as settings_test_runner;
 | |
| import 'desktop/sidebar/sidebar_test_runner.dart' as sidebar_test_runner;
 | |
| import 'desktop/uncategorized/emoji_shortcut_test.dart' as emoji_shortcut_test;
 | |
| import 'desktop/uncategorized/empty_test.dart' as first_test;
 | |
| import 'desktop/uncategorized/hotkeys_test.dart' as hotkeys_test;
 | |
| import 'desktop/uncategorized/import_files_test.dart' as import_files_test;
 | |
| import 'desktop/uncategorized/share_markdown_test.dart' as share_markdown_test;
 | |
| import 'desktop/uncategorized/tabs_test.dart' as tabs_test;
 | |
| 
 | |
| Future<void> main() async {
 | |
|   await runIntegration3OnDesktop();
 | |
| }
 | |
| 
 | |
| Future<void> runIntegration3OnDesktop() async {
 | |
|   IntegrationTestWidgetsFlutterBinding.ensureInitialized();
 | |
| 
 | |
|   // This test must be run first, otherwise the CI will fail.
 | |
|   first_test.main();
 | |
| 
 | |
|   hotkeys_test.main();
 | |
|   emoji_shortcut_test.main();
 | |
|   hotkeys_test.main();
 | |
|   emoji_shortcut_test.main();
 | |
|   settings_test_runner.main();
 | |
|   share_markdown_test.main();
 | |
|   import_files_test.main();
 | |
|   sidebar_test_runner.startTesting();
 | |
|   board_test_runner.startTesting();
 | |
|   tabs_test.main();
 | |
| }
 |