#[cfg(feature = "integration-lsp")] mod test { mod helpers; 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", "hello world#[|\n]#")).await?; Ok(()) } mod lsp; }