load("@io_bazel_rules_go//go:def.bzl", "go_test") go_test( name = "embed_test", srcs = ["embed_test.go"], args = [ # force t.Log to print even if the test passes # dont use this in production "--test.v", ], tags = [ "f2-example", # dont use outside f2/examples, stops deps test from failing "integration", ], visibility = ["//visibility:public"], deps = [ "//test/f2", "//test/f2/examples/embed/sharingdata/shared", "@tools_gotest_v3//assert", ], ) go_test( name = "sharingdata_test", srcs = ["embed_test.go"], deps = [ "//test/f2", "//test/f2/examples/embed/sharingdata/shared", "@tools_gotest_v3//assert", ], )