(t *testing.T)
| 34 | ) |
| 35 | |
| 36 | func TestWatch(t *testing.T) { |
| 37 | services := []string{"alpine", "busybox", "debian"} |
| 38 | for _, svcName := range services { |
| 39 | t.Run(svcName, func(t *testing.T) { |
| 40 | t.Helper() |
| 41 | doTest(t, svcName) |
| 42 | }) |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | func TestRebuildOnDotEnvWithExternalNetwork(t *testing.T) { |
| 47 | const projectName = "test_rebuild_on_dotenv_with_external_network" |