package integration import ( "context" "os" "testing" "edge-infra.dev/test/f2" "edge-infra.dev/test/f2/x/postgres" ) var ( f f2.Framework ) func TestMain(m *testing.M) { f = f2.New( context.Background(), f2.WithExtensions( postgres.New(postgres.ApplySeedModel()), ), ) os.Exit(f.Run(m)) }