1 package gexec_test 2 3 import ( 4 . "github.com/onsi/ginkgo/v2" 5 . "github.com/onsi/gomega" 6 "github.com/onsi/gomega/gexec" 7 8 "testing" 9 ) 10 11 func TestGexec(t *testing.T) { 12 AfterSuite(func() { 13 gexec.CleanupBuildArtifacts() 14 }) 15 16 RegisterFailHandler(Fail) 17 RunSpecs(t, "Gexec Suite") 18 } 19