mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
14 lines
382 B
Dart
14 lines
382 B
Dart
|
import 'package:integration_test/integration_test.dart';
|
||
|
|
||
|
import 'auth/appflowy_cloud_auth_test.dart' as appflowy_cloud_auth_test;
|
||
|
import 'empty_test.dart' as first_test;
|
||
|
|
||
|
Future<void> main() async {
|
||
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
||
|
|
||
|
// This test must be run first, otherwise the CI will fail.
|
||
|
first_test.main();
|
||
|
|
||
|
appflowy_cloud_auth_test.main();
|
||
|
}
|