summaryrefslogtreecommitdiff
path: root/helix-term/tests/integration.rs
diff options
context:
space:
mode:
authorSkyler Hawthorne2022-05-01 00:44:54 +0000
committerSkyler Hawthorne2022-06-19 03:54:03 +0000
commit07fc80aece221233b4a986b0c5a03e2056cc1307 (patch)
tree5165c2e33265cefa10081b77fb6436b4f08c8d26 /helix-term/tests/integration.rs
parentee705dcb3363aeb197f6125ab2f8285782333010 (diff)
tests for serialized writes
Diffstat (limited to 'helix-term/tests/integration.rs')
-rw-r--r--helix-term/tests/integration.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/tests/integration.rs b/helix-term/tests/integration.rs
index b2b78e63..54364e12 100644
--- a/helix-term/tests/integration.rs
+++ b/helix-term/tests/integration.rs
@@ -17,6 +17,7 @@ mod integration {
Args::default(),
Config::default(),
("#[\n|]#", "ihello world<esc>", "hello world#[|\n]#"),
+ None,
)
.await?;
@@ -25,6 +26,7 @@ mod integration {
mod auto_indent;
mod auto_pairs;
+ mod commands;
mod movement;
mod write;
}