We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51090a8 commit acf208aCopy full SHA for acf208a
reporters/default_reporter.go
@@ -376,6 +376,11 @@ func (r *DefaultReporter) humanReadableState(state types.SpecState) string {
376
}
377
378
func (r *DefaultReporter) emitTimeline(indent uint, report types.SpecReport, timeline types.Timeline) {
379
+ // Skip timeline rendering for specs that never ran (e.g., skipped due to failed BeforeAll or in ordered containers)
380
+ if report.EndTime.IsZero() && len(report.CapturedGinkgoWriterOutput) == 0 {
381
+ return
382
+ }
383
+
384
isVeryVerbose := r.conf.Verbosity().Is(types.VerbosityLevelVeryVerbose)
385
gw := report.CapturedGinkgoWriterOutput
386
cursor := 0
0 commit comments