diff --git a/cli/internal/deploy.go b/cli/internal/deploy.go index 5d4706eaf..a4d5f4ac6 100644 --- a/cli/internal/deploy.go +++ b/cli/internal/deploy.go @@ -64,7 +64,7 @@ func DeployOverview( server = "local" } - domain := app.Domain + domain := fmt.Sprintf("https://%s", app.Domain) if domain == "" { domain = config.MISSING_DEFAULT } diff --git a/tests/integration/app_deploy_overview.bats b/tests/integration/app_deploy_overview.bats index 4a2f0fb58..519bb9ae9 100644 --- a/tests/integration/app_deploy_overview.bats +++ b/tests/integration/app_deploy_overview.bats @@ -68,6 +68,13 @@ teardown(){ assert_success } +@test "domain shown with https" { + run $ABRA app deploy "$TEST_APP_DOMAIN" \ + --no-input --no-converge-checks + assert_success + assert_output --partial "https://$TEST_DOMAIN" +} + # bats test_tags=slow @test "show changed config version on re-deploy" { run $ABRA app deploy "$TEST_APP_DOMAIN" \