mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
14 lines
199 B
Go
14 lines
199 B
Go
|
package bazel_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/prysmaticlabs/prysm/build/bazel"
|
||
|
)
|
||
|
|
||
|
func TestBuildWithBazel(t *testing.T) {
|
||
|
if !bazel.BuiltWithBazel() {
|
||
|
t.Error("not built with Bazel")
|
||
|
}
|
||
|
}
|