nushell/tests/repl/test_ide.rs
2025-05-13 16:49:30 +02:00

11 lines
240 B
Rust

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\"",
)
}