Skip to content

Commit

Permalink
Merge branch 'main' into fix_team_workspace_issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasXu0 committed Apr 7, 2024
2 parents bde35a0 + 81594fa commit c79b5fe
Show file tree
Hide file tree
Showing 11 changed files with 45 additions and 318 deletions.
6 changes: 5 additions & 1 deletion frontend/appflowy_flutter/integration_test/shared/base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,11 @@ extension AppFlowyTestBase on WidgetTester {
buttons: buttons,
warnIfMissed: warnIfMissed,
);
await pumpAndSettle(Duration(milliseconds: milliseconds));
await pumpAndSettle(
Duration(milliseconds: milliseconds),
EnginePhase.sendSemanticsUpdate,
const Duration(seconds: 5),
);
}

Future<void> tapButtonWithName(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ extension CommonOperations on WidgetTester {
final workspace = find.byType(SidebarWorkspace);
expect(workspace, findsOneWidget);
// click it
await tapButton(workspace);
await tapButton(workspace, milliseconds: 2000);
}

Future<void> closeCollaborativeWorkspaceMenu() async {
Expand Down
114 changes: 11 additions & 103 deletions frontend/appflowy_tauri/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/appflowy_tauri/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ yrs = { git = "https://github.com/appflowy/y-crdt", rev = "3f25bb510ca5274e7657d
# Run the script:
# scripts/tool/update_client_api_rev.sh new_rev_id
# ⚠️⚠️⚠️️
client-api = { git = "https://github.com/AppFlowy-IO/AppFlowy-Cloud", rev = "bdee9fa8dc0a9c3f45caec3a1ef2a496f5e7e9e9" }
client-api = { git = "https://github.com/AppFlowy-IO/AppFlowy-Cloud", rev = "b1a6338527e7a4836f77eae3ba00f9b09de223a3" }
# Please use the following script to update collab.
# Working directory: frontend
#
Expand Down
2 changes: 1 addition & 1 deletion frontend/appflowy_web/wasm-libs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ codegen-units = 1
# Run the script:
# scripts/tool/update_client_api_rev.sh new_rev_id
# ⚠️⚠️⚠️️
client-api = { git = "https://github.com/AppFlowy-IO/AppFlowy-Cloud", rev = "bdee9fa8dc0a9c3f45caec3a1ef2a496f5e7e9e9" }
client-api = { git = "https://github.com/AppFlowy-IO/AppFlowy-Cloud", rev = "b1a6338527e7a4836f77eae3ba00f9b09de223a3" }
# Please use the following script to update collab.
# Working directory: frontend
#
Expand Down
Loading

0 comments on commit c79b5fe

Please sign in to comment.