diff --git a/tests/integration/recipe_new.bats b/tests/integration/recipe_new.bats index b0e74faf..a7e96c45 100644 --- a/tests/integration/recipe_new.bats +++ b/tests/integration/recipe_new.bats @@ -48,11 +48,9 @@ teardown(){ --server "$TEST_SERVER" \ --domain "foobar.$TEST_SERVER" assert_success - assert_output --partial "new app 'foobar' created" run $ABRA app deploy "foobar.$TEST_SERVER" --no-input assert_success - assert_output --partial 'using latest commit' } @test "create new recipe with git credentials" { diff --git a/tests/integration/recipe_version.bats b/tests/integration/recipe_version.bats index 38f1ccb9..390c0620 100644 --- a/tests/integration/recipe_version.bats +++ b/tests/integration/recipe_version.bats @@ -32,13 +32,3 @@ setup() { assert_success assert_output "$latestVersion" } - -@test "app is first service listed" { - run bash -c '$ABRA recipe versions gitea --machine | jq -r ".[0].service" | uniq' - assert_success - assert_output 'app' - - run bash -c '$ABRA recipe versions gitea --machine | jq -r ".[1].service" | uniq' - assert_success - assert_output 'db' -}