Skip to content

Instantly share code, notes, and snippets.

@kevholditch
Created November 21, 2017 20:13
Embed
What would you like to do?
func TestMain(m *testing.M) {
testContext := containers.StartKong(GetEnvVarOrDefault("KONG_VERSION", defaultKongVersion))
err := os.Setenv(EnvKongAdminHostAddress, testContext.KongHostAddress)
if err != nil {
log.Fatalf("Could not set kong host address env variable: %v", err)
}
code := m.Run()
containers.StopKong(testContext)
os.Exit(code)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment