mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 22:57:12 -04:00
7 lines
215 B
Rust
7 lines
215 B
Rust
use crate::document::helper::{DocScript, DocumentTest};
|
|
|
|
#[actix_rt::test]
|
|
async fn edit_doc_insert_text() {
|
|
let test = DocumentTest::new().await;
|
|
test.run_scripts(vec![DocScript::SendText("abc")]).await;
|
|
}
|