mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-04 23:52:38 +00:00

* fix: user workspace bloc changed * fix: use translate card cell style * fix: add getworkspacemember * fix: billing launch review * fix: disable time field * fix: member tooltip * fix: remove my account description * fix: punctuation * fix: filter workspace font * fix: cloud toggle * fix: minor adjustments * chore: disable cloud document search * fix: improve workspace name textfield * test: move billing test to cloud * fix: use cache over remote * fix: clippy and tests * chore: amend flowy tooltip * test: add pump and settle * test: integration test for local auth
20 lines
689 B
Dart
20 lines
689 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 'empty_test.dart' as preset_af_cloud_env_test;
|
|
import 'user_setting_sync_test.dart' as user_sync_test;
|
|
import 'workspace/change_name_and_icon_test.dart'
|
|
as change_workspace_name_and_icon_test;
|
|
import 'workspace/collaborative_workspace_test.dart'
|
|
as collaboration_workspace_test;
|
|
|
|
Future<void> main() async {
|
|
preset_af_cloud_env_test.main();
|
|
appflowy_cloud_auth_test.main();
|
|
user_sync_test.main();
|
|
anon_user_continue_test.main();
|
|
|
|
// workspace
|
|
collaboration_workspace_test.main();
|
|
change_workspace_name_and_icon_test.main();
|
|
}
|