2024-11-14 06:55:09 +01:00
|
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
|
|
|
|
import 'desktop/uncategorized/tabs_test.dart' as tabs_test;
|
2024-12-12 09:27:24 +08:00
|
|
|
import 'desktop/uncategorized/code_block_language_selector_test.dart'
|
|
|
|
as code_language_selector;
|
2024-11-14 06:55:09 +01:00
|
|
|
import 'desktop/first_test/first_test.dart' as first_test;
|
|
|
|
|
|
|
|
Future<void> main() async {
|
|
|
|
await runIntegration9OnDesktop();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> runIntegration9OnDesktop() async {
|
|
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
|
|
|
|
first_test.main();
|
|
|
|
tabs_test.main();
|
2024-12-12 09:27:24 +08:00
|
|
|
code_language_selector.main();
|
2024-11-14 06:55:09 +01:00
|
|
|
}
|