Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/tests/integration.rs')
-rw-r--r--helix-term/tests/integration.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/helix-term/tests/integration.rs b/helix-term/tests/integration.rs
deleted file mode 100644
index 469242e4..00000000
--- a/helix-term/tests/integration.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-#[cfg(feature = "integration")]
-mod test {
- mod helpers;
-
- use helix_core::{syntax::config::AutoPairConfig, Selection};
- use helix_term::config::Config;
-
- use indoc::indoc;
-
- use self::helpers::*;
-
- #[tokio::test(flavor = "multi_thread")]
- async fn hello_world() -> anyhow::Result<()> {
- test(("#[\n|]#", "ihello world<esc>", "hello world#[|\n]#")).await?;
- Ok(())
- }
-
- mod auto_indent;
- mod auto_pairs;
- mod command_line;
- mod commands;
- mod languages;
- mod movement;
- mod splits;
-}