nushell/crates/nu-command/tests
WindSoilder db3177a5aa
break for, loop, while execution when external command runs to failed (#7475)
Fixes: #7467

# User-Facing Changes

## for
```
❯ for i in 1..2 { echo 1;  ^false }
1
```

## loop
```
❯ loop { echo bb; ^false }
bb
```

## while
```
❯ mut x = 1; while $x < 3 { $x = $x + 1; echo bb; ^false }
bb
```
2022-12-14 16:20:18 +01:00
..
commands break for, loop, while execution when external command runs to failed (#7475) 2022-12-14 16:20:18 +01:00
format_conversions add input_output_types() to benchmark,cd and config reset (#7455) 2022-12-13 06:10:55 -06:00
main.rs Parser refactoring for improving pipelines (#7162) 2022-11-19 10:46:48 +13:00