Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/tests/test/prompt.rs')
| -rw-r--r-- | helix-term/tests/test/prompt.rs | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/helix-term/tests/test/prompt.rs b/helix-term/tests/test/prompt.rs deleted file mode 100644 index 4f3bf763..00000000 --- a/helix-term/tests/test/prompt.rs +++ /dev/null @@ -1,16 +0,0 @@ -use super::*; - -#[tokio::test(flavor = "multi_thread")] -async fn test_history_completion() -> anyhow::Result<()> { - test_key_sequence( - &mut AppBuilder::new().build()?, - Some(":asdf<ret>:theme d<C-n><tab>"), - Some(&|app| { - assert!(!app.editor.is_err()); - }), - false, - ) - .await?; - - Ok(()) -} |