fix: fetch recipe for "app list -S"

This commit is contained in:
2025-04-19 02:05:50 +02:00
committed by decentral1se
parent fa084a61d2
commit a43a092ba7
3 changed files with 21 additions and 2 deletions

View File

@ -8,6 +8,7 @@ setup_file(){
}
teardown_file(){
_undeploy_app
_rm_app
_rm_server
}
@ -98,3 +99,17 @@ teardown(){
assert_output --partial "$expectedOutput"
}
# bats test_tags=slow
@test "list with status fetches recipe" {
_deploy_app
run $ABRA app ls --status
assert_success
run rm -rf "$ABRA_DIR/recipes/$TEST_RECIPE"
assert_success
run $ABRA app ls --status
assert_success
}