prysm-pulse/testing/assert/BUILD.bazel

14 lines
398 B
Python
Raw Permalink Normal View History

load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
testonly = True,
srcs = ["assertions.go"],
importpath = "github.com/prysmaticlabs/prysm/v5/testing/assert",
visibility = ["//visibility:public"],
deps = [
"//testing/assertions:go_default_library",
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
],
)