package graph import ( "os" "testing" "github.com/google/go-containerregistry/pkg/name" "edge-infra.dev/pkg/f8n/warehouse/oci" "edge-infra.dev/test/fixtures" ) var ( path *fixtures.Path shoot oci.Artifact ) func TestMain(m *testing.M) { var err error path, err = fixtures.Layout() if err != nil { panic(err) } shoot, err = path.Get(name.MustParseReference("shoot:latest")) if err != nil { panic(err) } os.Exit(m.Run()) }