Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cleanup
  • Loading branch information
diranged committed Aug 16, 2023
commit cc2958ae1b54e93dc73309c12f2c92476385c940
12 changes: 6 additions & 6 deletions internal/testing/e2e/e2e_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ var _ = BeforeSuite(func() {
})

// After the suite, undeploy the resources to clean up as much as possible.
// var _ = AfterSuite(func() {
// By("tearing down the test resources")
// cmd := exec.Command("make", "undeploy")
// _, err := utils.Run(cmd)
// ExpectWithOffset(1, err).NotTo(HaveOccurred())
// })
var _ = AfterSuite(func() {
By("tearing down the test resources")
cmd := exec.Command("make", "undeploy")
_, err := utils.Run(cmd)
ExpectWithOffset(1, err).NotTo(HaveOccurred())
})