mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-31 04:46:15 +00:00
9 lines
173 B
Rust
9 lines
173 B
Rust
use flowy_test::editor::*;
|
|
|
|
#[tokio::test]
|
|
async fn create_doc() {
|
|
let test = EditorTest::new().await;
|
|
let _editor = test.create_doc().await;
|
|
println!("123");
|
|
}
|