mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: update unit test
This commit is contained in:
parent
c760ca6788
commit
6061dc1989
@ -7,28 +7,7 @@ use flowy_test::{event_builder::*, FlowySDKTest};
|
||||
async fn workspace_read_all() {
|
||||
let mut test = FolderTest::new().await;
|
||||
test.run_scripts(vec![ReadAllWorkspaces]).await;
|
||||
|
||||
if test.all_workspace.len() != 2 {
|
||||
// The first workspace will be the default workspace
|
||||
// The second workspace will be created by FolderTest
|
||||
|
||||
for workspace in test.all_workspace {
|
||||
eprintln!("❌ {:?}", workspace.name);
|
||||
}
|
||||
assert_eq!(test.all_workspace.len(), 2);
|
||||
}
|
||||
|
||||
let new_name = "My new workspace".to_owned();
|
||||
test.run_scripts(vec![
|
||||
CreateWorkspace {
|
||||
name: new_name.clone(),
|
||||
desc: "Daily routines".to_owned(),
|
||||
},
|
||||
ReadAllWorkspaces,
|
||||
])
|
||||
.await;
|
||||
assert_eq!(test.all_workspace.len(), 3);
|
||||
assert_eq!(test.all_workspace[2].name, new_name);
|
||||
assert!(!test.all_workspace.is_empty());
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
|
Loading…
Reference in New Issue
Block a user