mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-31 21:11:35 +00:00

* fix: cache publish info to avoid repeated requests * chore: 'Copy Link' to 'Copy link' * chore: enable ios ci * fix: ios ci * chore: replace mention block icon * fix: ios ci tests * fix: ios ci tests * fix: ai wirte replace assertion * fix: windows ci
10 lines
308 B
Dart
10 lines
308 B
Dart
import 'document/publish_test.dart' as publish_test;
|
|
import 'document/share_link_test.dart' as share_link_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();
|
|
}
|