1 package integration 2 3 import ( 4 "context" 5 "os" 6 "testing" 7 8 "edge-infra.dev/test/f2" 9 "edge-infra.dev/test/f2/x/postgres" 10 ) 11 12 var ( 13 f f2.Framework 14 ) 15 16 func TestMain(m *testing.M) { 17 f = f2.New( 18 context.Background(), 19 f2.WithExtensions( 20 postgres.New(postgres.ApplySeedModel()), 21 ), 22 ) 23 os.Exit(f.Run(m)) 24 } 25