mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 01:54:37 +00:00 
			
		
		
		
	 066bba95f5
			
		
	
	
		066bba95f5
		
			
		
	
	
	
	
		
			
			* fix: update auto-update fields on change group auto-update fields should get updated when on moving row from one group to another. They where getting updated only on changing row properties directly. Also added integration test for changing row groupd related to #3010. * style: rust format * fix: add board group test to runner * fix: update auto updated fiels only when group has changed * fix: apply group changeset before move_row * fix: get from_row before move_row * fix: groups method changed to get_all_groups * fix: pass from group id in move group payload We can't know the from group id from the row itself. Because a row can exist in multiple groups (group by multiselect). * fix: MoveGroupRowPayloadPB from_group_id index
		
			
				
	
	
		
			15 lines
		
	
	
		
			410 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			410 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:integration_test/integration_test.dart';
 | |
| 
 | |
| import 'board_row_test.dart' as board_row_test;
 | |
| import 'board_add_row_test.dart' as board_add_row_test;
 | |
| import 'board_group_test.dart' as board_group_test;
 | |
| 
 | |
| void startTesting() {
 | |
|   IntegrationTestWidgetsFlutterBinding.ensureInitialized();
 | |
| 
 | |
|   // Board integration tests
 | |
|   board_row_test.main();
 | |
|   board_add_row_test.main();
 | |
|   board_group_test.main();
 | |
| }
 |