17 lines
196 B
Go
17 lines
196 B
Go
|
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)
|
||
|
|
||
|
}
|