fix: show no images if no diff required

This commit is contained in:
2025-09-10 21:44:12 +02:00
parent 870dcfb342
commit a31a25cfa1
2 changed files with 18 additions and 2 deletions

View File

@ -551,3 +551,13 @@ teardown(){
assert_success
refute_output --regexp "coop-cloud.abra-test-recipe.$TEST_SERVER.chaos-version"
}
# bats test_tags=slow
@test "no IMAGES diff if no images change" {
run $ABRA app deploy "$TEST_APP_DOMAIN" --no-input --no-converge-checks
assert_success
run $ABRA app deploy "$TEST_APP_DOMAIN" --no-input --no-converge-checks --force
assert_success
refute_output --partial "IMAGES"
}