8 lines
215 B
Rust
Raw Normal View History

2021-09-27 23:23:23 +08:00
use crate::document::helper::{DocScript, DocumentTest};
#[actix_rt::test]
async fn edit_doc_insert_text() {
2021-09-27 23:23:23 +08:00
let test = DocumentTest::new().await;
test.run_scripts(vec![DocScript::SendText("abc")]).await;
}