1 package gleak 2 3 import ( 4 "testing" 5 6 . "github.com/onsi/ginkgo/v2" 7 . "github.com/onsi/gomega" 8 ) 9 10 // In case this suite is run in parallel with other test suites using "ginkgo 11 // -p", then there is a Ginkgo-related background go routine that we need to 12 // ignore in all tests and that can be identified only by its random ID. 13 var _ = BeforeSuite(func() { 14 IgnoreGinkgoParallelClient() 15 }) 16 17 func TestGleak(t *testing.T) { 18 RegisterFailHandler(Fail) 19 RunSpecs(t, "Gleak Suite") 20 } 21