add tests for std help error make

This commit is contained in:
WindSoilder 2024-07-05 06:59:43 +08:00
parent 9aa6675f85
commit 75f6d73b78

View File

@ -7,3 +7,8 @@ def show_help_on_commands [] {
assert ("item not found" not-in $help_result)
}
#[test]
def show_help_on_error_make [] {
let help_result = (help error make)
assert ("Error: nu::shell::eval_block_with_input" not-in $help_result)
}