mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
feat: add icon field (#4824)
* feat: add icon field * fix: add sqlx migration files * chore: fix tst * chore: fix duplicate event name * chore: update to lastest stable rust toolchain * chore: use 1.75 channel * chore: fix duplicate event name * chore: fix duplicate event name * chore: use more reliable assertion --------- Co-authored-by: nathan <nathan@appflowy.io>
This commit is contained in:
@ -58,7 +58,10 @@ async fn af_cloud_create_workspace_test() {
|
||||
|
||||
let workspaces = get_synced_workspaces(&test, user_profile_pb.id).await;
|
||||
assert_eq!(workspaces.len(), 2);
|
||||
assert_eq!(workspaces[1].name, "my second workspace".to_string());
|
||||
let _second_workspace = workspaces
|
||||
.iter()
|
||||
.find(|w| w.name == "my second workspace")
|
||||
.expect("created workspace not found");
|
||||
|
||||
{
|
||||
// before opening new workspace
|
||||
|
Reference in New Issue
Block a user