(t testing.TB, project string, args ...string)
| 514 | } |
| 515 | |
| 516 | func (c *CLI) cleanupWithDown(t testing.TB, project string, args ...string) { |
| 517 | t.Helper() |
| 518 | c.RunDockerComposeCmd(t, append([]string{"-p", project, "down", "-v", "--remove-orphans"}, args...)...) |
| 519 | } |