nu 0.112.2

A new type of shell
1
2
3
4
5
6
7
8
9
10
use crate::repl::tests::{TestResult, test_ide_contains};

#[test]
fn parser_recovers() -> TestResult {
    test_ide_contains(
        "3 + \"bob\"\nlet x = \"fred\"\n",
        &["--ide-check", "5"],
        "\"typename\":\"string\"",
    )
}