aboutsummaryrefslogtreecommitdiff
path: root/helix-term/tests/integration.rs
blob: 9c0e6bbc78927ca243b542f47d6c47f1f5dd4d24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#[cfg(feature = "integration")]
mod test {
    mod helpers;

    use helix_core::{syntax::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 commands;
    mod languages;
    mod movement;
    mod picker;
    mod prompt;
    mod splits;
}