diff options
author | Skyler Hawthorne | 2022-05-01 00:44:54 +0000 |
---|---|---|
committer | Skyler Hawthorne | 2022-06-19 03:54:03 +0000 |
commit | 07fc80aece221233b4a986b0c5a03e2056cc1307 (patch) | |
tree | 5165c2e33265cefa10081b77fb6436b4f08c8d26 /helix-term/tests/integration/auto_pairs.rs | |
parent | ee705dcb3363aeb197f6125ab2f8285782333010 (diff) |
tests for serialized writes
Diffstat (limited to 'helix-term/tests/integration/auto_pairs.rs')
-rw-r--r-- | helix-term/tests/integration/auto_pairs.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/tests/integration/auto_pairs.rs b/helix-term/tests/integration/auto_pairs.rs index 52fee55e..d34cd0fd 100644 --- a/helix-term/tests/integration/auto_pairs.rs +++ b/helix-term/tests/integration/auto_pairs.rs @@ -6,6 +6,7 @@ async fn auto_pairs_basic() -> anyhow::Result<()> { Args::default(), Config::default(), ("#[\n|]#", "i(<esc>", "(#[|)]#\n"), + None, ) .await?; @@ -19,6 +20,7 @@ async fn auto_pairs_basic() -> anyhow::Result<()> { ..Default::default() }, ("#[\n|]#", "i(<esc>", "(#[|\n]#"), + None, ) .await?; |