load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "wait", srcs = ["wait.go"], importpath = "edge-infra.dev/pkg/sds/devices/wait", visibility = ["//visibility:public"], deps = [ "//pkg/lib/fog", "//pkg/sds/devices/k8s/apis/v1:apis", ], ) go_test( name = "wait_test", srcs = ["wait_test.go"], embed = [":wait"], deps = [ "@com_github_stretchr_testify//assert", "@com_github_stretchr_testify//require", "@tools_gotest_v3//fs", ], )