...
1load("@io_bazel_rules_go//go:def.bzl", "go_test")
2
3go_test(
4 name = "ea_integration_test",
5 srcs = ["ea_v1_integration_test.go"],
6 tags = [
7 "integration",
8 "needs-f2-refactor",
9 ],
10 visibility = ["//visibility:public"],
11 deps = [
12 "//pkg/lib/fog",
13 "//pkg/sds/emergencyaccess/cliservice",
14 "//pkg/sds/emergencyaccess/eaconst",
15 "//pkg/sds/emergencyaccess/msgdata",
16 "//pkg/sds/emergencyaccess/msgsvc",
17 "//test/f2",
18 "//test/f2/x/pstest",
19 "@com_github_stretchr_testify//assert",
20 "@com_google_cloud_go_pubsub//:pubsub",
21 ],
22)
View as plain text