Files
prysm/build/bazel/bazel_test.go
Bastin 92bd211e4d upgrade v6 to v7 (#15989)
* upgrade v6 to v7

* changelog

* update-go-ssz
2025-11-06 16:16:23 +00:00

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")
}
}