refactor tests

This commit is contained in:
appflowy
2021-12-08 17:33:22 +08:00
parent 4450d4410b
commit 7ac55f29db
30 changed files with 467 additions and 454 deletions

View File

@ -1,6 +1,7 @@
#![allow(clippy::module_inception)]
mod attribute_test;
mod op_test;
mod revision_test;
mod serde_test;
mod undo_redo_test;

View File

@ -0,0 +1,8 @@
use flowy_test::editor::*;
#[tokio::test]
async fn create_doc() {
let test = EditorTest::new().await;
let _editor = test.create_doc().await;
println!("123");
}