mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-25 18:06:00 +00:00

* feat: support duplicating and deleting a space on mobile * feat: support editing a space on mobile * feat: support renaming space * feat: add more space icons * fix: unable to rename space * fix: code review * chore: remove ingore import flag for testing * test: add create space test * chore: enable cloud test * test: fix space test * test: add rename/duplicate/delete tests
12 lines
375 B
Dart
12 lines
375 B
Dart
import 'document/publish_test.dart' as publish_test;
|
|
import 'document/share_link_test.dart' as share_link_test;
|
|
import 'space/space_test.dart' as space_test;
|
|
import 'workspace/workspace_operations_test.dart' as workspace_operations_test;
|
|
|
|
Future<void> main() async {
|
|
workspace_operations_test.main();
|
|
share_link_test.main();
|
|
publish_test.main();
|
|
space_test.main();
|
|
}
|