(t *testing.T)
| 33 | var suiteHelper *cu.FunctionalSuiteHelper |
| 34 | |
| 35 | func TestIntegration(t *testing.T) { |
| 36 | RegisterFailHandler(Fail) |
| 37 | |
| 38 | // TODO Why is Skip not working? It's counting as a test fail. |
| 39 | if os.Getenv("INTEGRATION_EXTERNAL_NAME") == "" { |
| 40 | return |
| 41 | } |
| 42 | |
| 43 | RunSpecsWithDefaultAndCustomReporters(t, |
| 44 | "Integration Suite", |
| 45 | []Reporter{printer.NewlineReporter{}}) |
| 46 | } |
| 47 | |
| 48 | var _ = BeforeSuite(func(done Done) { |
| 49 | logf.SetLogger(zap.New(zap.UseDevMode(true), zap.WriteTo(GinkgoWriter))) |
nothing calls this directly
no outgoing calls
no test coverage detected