package main import ( "context" "testing" "github.com/stretchr/testify/assert" ) func TestBuild(t *testing.T) { t.Parallel() err := Build(context.Background()) assert.NoError(t, err) }