package app import ( "testing" "github.com/onsi/ginkgo/reporters" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) func TestApp(t *testing.T) { RegisterFailHandler(Fail) junitReporter := reporters.NewJUnitReporter("test-app.xml") RunSpecsWithDefaultAndCustomReporters(t, "app", []Reporter{junitReporter}) }