mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
3e17613f54
* chore: save cloud ofnig * chore: fix .a link warnings * chore: add cloud test runner * refactor: test folder * ci: add test * ci: add test * ci: fix * ci: fix
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();
|
|
}
|