load("@io_bazel_rules_go//go:def.bzl", "go_test")

go_test(
    name = "integration_test",
    srcs = ["integration_test.go"],
    tags = ["integration"],
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/edge/api/services",
        "//pkg/edge/api/services/artifacts",
        "//pkg/edge/api/services/cluster",
        "//pkg/edge/api/sql",
        "//pkg/edge/api/sql/plugin",
        "//pkg/edge/api/sql/utils",
        "//pkg/edge/api/testutils/seededpostgres",
        "//pkg/edge/api/types",
        "//pkg/edge/constants/api/fleet",
        "//pkg/lib/runtime/version",
        "//test/f2",
        "//test/f2/x/postgres",
        "@com_github_google_uuid//:uuid",
        "@com_github_stretchr_testify//assert",
    ],
)