Skip to content

Commit

Permalink
The docker image smoke test still needs the diego_docker flag to be set
Browse files Browse the repository at this point in the history
  • Loading branch information
davewalter committed Apr 9, 2020
1 parent 0fee95c commit 27a59a2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/smoke/smoke_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ var _ = Describe("Smoke Tests", func() {
})

It("creates a routable app pod in Kubernetes from a docker image-based app", func() {
// Enable Docker Feature Flag
Eventually(cf.Cf("enable-feature-flag", "diego_docker")).Should(Exit(0))

appName = generator.PrefixedRandomName(NamePrefix, "app")

By("pushing an app and checking that the CF CLI command succeeds")
Expand Down Expand Up @@ -114,6 +117,9 @@ var _ = Describe("Smoke Tests", func() {
})

It("creates a routable app pod in Kubernetes from a source-based app", func() {
// Disable Docker Feature Flag
Eventually(cf.Cf("disable-feature-flag", "diego_docker")).Should(Exit(0))

appName = generator.PrefixedRandomName(NamePrefix, "app")

By("pushing an app and checking that the CF CLI command succeeds")
Expand Down

0 comments on commit 27a59a2

Please sign in to comment.