mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 10:03:18 +00:00 
			
		
		
		
	 28aa2329fb
			
		
	
	
		28aa2329fb
		
			
		
	
	
	
	
		
			
			* feat: split the integration tests into multiple runners * feat: use 6 runners * fix: name * fix: integration tests * fix: macos arm64 build * Revert "fix: macos arm64 build" This reverts commit 80b961361fac94b4d3801f8ca1964f0b8fac6331. * chore: use 7 runners * chore: use 8 runners
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'dart:io';
 | |
| 
 | |
| import 'desktop_runner_1.dart';
 | |
| import 'desktop_runner_2.dart';
 | |
| import 'desktop_runner_3.dart';
 | |
| import 'desktop_runner_4.dart';
 | |
| import 'desktop_runner_5.dart';
 | |
| import 'desktop_runner_6.dart';
 | |
| import 'desktop_runner_7.dart';
 | |
| import 'desktop_runner_8.dart';
 | |
| import 'mobile_runner.dart';
 | |
| 
 | |
| /// The main task runner for all integration tests in AppFlowy.
 | |
| ///
 | |
| /// Having a single entrypoint for integration tests is necessary due to an
 | |
| /// [issue caused by switching files with integration testing](https://github.com/flutter/flutter/issues/101031).
 | |
| /// If flutter/flutter#101031 is resolved, this file can be removed completely.
 | |
| /// Once removed, the integration_test.yaml must be updated to exclude this as
 | |
| /// as the test target.
 | |
| Future<void> main() async {
 | |
|   if (Platform.isLinux || Platform.isMacOS || Platform.isWindows) {
 | |
|     await runIntegration1OnDesktop();
 | |
|     await runIntegration2OnDesktop();
 | |
|     await runIntegration3OnDesktop();
 | |
|     await runIntegration4OnDesktop();
 | |
|     await runIntegration5OnDesktop();
 | |
|     await runIntegration6OnDesktop();
 | |
|     await runIntegration7OnDesktop();
 | |
|     await runIntegration8OnDesktop();
 | |
|   } else if (Platform.isIOS || Platform.isAndroid) {
 | |
|     await runIntegrationOnMobile();
 | |
|   } else {
 | |
|     throw Exception('Unsupported platform');
 | |
|   }
 | |
| }
 |