Nathan.fooo 6ecc3c9076
test: add document sync test on appflowy cloud (#4163)
* test: add document sync test on appflowy cloud

* chore: add runner

* test: Stream has already been listened to.

* fix: using singleton subscription

* fix: using singleton subscription
2023-12-21 08:12:40 +08:00

15 lines
364 B
Dart

import 'empty_test.dart' as empty_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;
Future<void> main() async {
empty_test.main();
appflowy_cloud_auth_test.main();
document_sync_test.main();
user_sync_test.main();
}