mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 17:11:23 +00:00
18 lines
464 B
Dart
18 lines
464 B
Dart
![]() |
import 'package:integration_test/integration_test.dart';
|
||
|
|
||
|
import 'desktop/document/document_test_runner_4.dart' as document_test_runner_4;
|
||
|
import 'desktop/first_test/first_test.dart' as first_test;
|
||
|
|
||
|
Future<void> main() async {
|
||
|
await runIntegration8OnDesktop();
|
||
|
}
|
||
|
|
||
|
Future<void> runIntegration8OnDesktop() async {
|
||
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
||
|
|
||
|
first_test.main();
|
||
|
|
||
|
document_test_runner_4.main();
|
||
|
// DON'T add more tests here.
|
||
|
}
|