nu 0.84.0

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

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