9 lines
173 B
Rust
Raw Normal View History

2021-12-08 17:33:22 +08:00
use flowy_test::editor::*;
#[tokio::test]
async fn create_doc() {
let test = EditorTest::new().await;
let _editor = test.create_doc().await;
println!("123");
}