mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-13 03:11:03 +00:00

* feat: support opening a workspace * feat: support renaming a workspace * fix: rename issue * fix: rename issues * feat: refactor menu bloc * test: add collaborative workspace test * test: add open workspace integration tet * test: add delete workspace integration tet * chore: turn off collab workspace feature
21 lines
615 B
Dart
21 lines
615 B
Dart
import 'anon_user_continue_test.dart' as anon_user_continue_test;
|
|
import 'appflowy_cloud_auth_test.dart' as appflowy_cloud_auth_test;
|
|
import 'collaborative_workspace_test.dart' as collaboration_workspace_test;
|
|
import 'empty_test.dart' as preset_af_cloud_env_test;
|
|
// import 'document_sync_test.dart' as document_sync_test;
|
|
import 'user_setting_sync_test.dart' as user_sync_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();
|
|
|
|
collaboration_workspace_test.main();
|
|
}
|