just 1.8.0

🤖 Just a command runner
Documentation
use super::*;

#[test]
fn infallible_after_quiet() {
  Test::new()
    .justfile(
      "
        foo:
          @-exit 1
      ",
    )
    .run();
}

#[test]
fn quiet_after_infallible() {
  Test::new()
    .justfile(
      "
        foo:
          -@exit 1
      ",
    )
    .run();
}