diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index 67ebf25..e45e7c4 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -147,6 +147,18 @@ fn can_run_failing_commands_with_ignore_failure_option() { .success(); } +#[test] +fn shows_output_of_benchmarked_command() { + hyperfine() + .arg("--runs=2") + .arg("--command-name=dummy") + .arg("--show-output") + .arg("echo 4fd47015") + .assert() + .success() + .stdout(predicate::str::contains("4fd47015").count(2)); +} + #[test] fn runs_commands_using_user_defined_shell() { hyperfine()