Files
query-orchestration/internal/test/container_test.go
T
Michael McGuinness efe87321b2 Merged in feature/parallellogqueries (pull request #132)
Testing Tweaks

* parallel

* slowestquery

* split

* cleanup

* health

* dynamiccores

* go

* profile

* timeout

* commitmychanges

* taskfile

* sqlcheckstart

* client

* cost

* ctxtimeout
2025-05-05 09:31:21 +00:00

19 lines
309 B
Go

package test
import (
"testing"
"github.com/gruntwork-io/terratest/modules/docker"
"github.com/stretchr/testify/assert"
)
func TestBuildImage(t *testing.T) {
if testing.Short() {
t.SkipNow()
}
buildImage(t, t.Context())
exists := docker.DoesImageExist(t, imageTag, nil)
assert.True(t, exists)
}