mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-17 14:06:04 +00:00

* refactor: remove singleton db * chore: fix warning * chore: fix warning * chore: update test * chore: only resotre or backup when init call * test: fix * test: fix * test: fix * fix: timeout notification * chore: rename * chore: rename * chore: disable test * chore: remove log * chore: remove log * chore: add log * chore: rename test functions * chore: add test asset * chore: bump client api * chore: disable some tests
18 lines
499 B
Dart
18 lines
499 B
Dart
import 'empty_test.dart' as preset_af_cloud_env_test;
|
|
import 'appflowy_cloud_auth_test.dart' as appflowy_cloud_auth_test;
|
|
// import 'document_sync_test.dart' as document_sync_test;
|
|
import 'user_setting_sync_test.dart' as user_sync_test;
|
|
import 'anon_user_continue_test.dart' as anon_user_continue_test;
|
|
|
|
Future<void> main() async {
|
|
preset_af_cloud_env_test.main();
|
|
|
|
appflowy_cloud_auth_test.main();
|
|
|
|
// document_sync_test.main();
|
|
|
|
user_sync_test.main();
|
|
|
|
anon_user_continue_test.main();
|
|
}
|