mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 09:01:21 +00:00

* 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
15 lines
364 B
Dart
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();
|
|
}
|