prysm-pulse/build/bazel/bazel_test.go

14 lines
202 B
Go
Raw Normal View History

package bazel_test
import (
"testing"
"github.com/prysmaticlabs/prysm/v4/build/bazel"
)
func TestBuildWithBazel(t *testing.T) {
if !bazel.BuiltWithBazel() {
t.Error("not built with Bazel")
}
}