mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 13:28:01 -05:00
14 lines
201 B
Go
14 lines
201 B
Go
package bazel_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/OffchainLabs/prysm/v7/build/bazel"
|
|
)
|
|
|
|
func TestBuildWithBazel(t *testing.T) {
|
|
if !bazel.BuiltWithBazel() {
|
|
t.Error("not built with Bazel")
|
|
}
|
|
}
|