type Done … type Reporter … /* Deprecated: Custom Reporters have been removed in Ginkgo 2.0. RunSpecsWithDefaultAndCustomReporters will simply call RunSpecs() Use Ginkgo's reporting nodes instead and 2.0 reporting infrastructure instead. You can learn more here: https://onsi.github.io/ginkgo/#reporting-infrastructure For a migration guide see: https://onsi.github.io/ginkgo/MIGRATING_TO_V2#removed-custom-reporters */ func RunSpecsWithDefaultAndCustomReporters(t GinkgoTestingT, description string, _ []Reporter) bool { … } /* Deprecated: Custom Reporters have been removed in Ginkgo 2.0. RunSpecsWithCustomReporters will simply call RunSpecs() Use Ginkgo's reporting nodes instead and 2.0 reporting infrastructure instead. You can learn more here: https://onsi.github.io/ginkgo/#reporting-infrastructure For a migration guide see: https://onsi.github.io/ginkgo/MIGRATING_TO_V2#removed-custom-reporters */ func RunSpecsWithCustomReporters(t GinkgoTestingT, description string, _ []Reporter) bool { … } type DeprecatedGinkgoTestDescription … type GinkgoTestDescription … /* Deprecated: CurrentGinkgoTestDescription has been replaced with CurrentSpecReport. Use CurrentSpecReport() instead. You can learn more here: https://onsi.github.io/ginkgo/#getting-a-report-for-the-current-spec The SpecReport type is documented here: https://pkg.go.dev/github.com/onsi/ginkgo/v2/types#SpecReport */ func CurrentGinkgoTestDescription() DeprecatedGinkgoTestDescription { … } /* Deprecated: GinkgoParallelNode() has been renamed to GinkgoParallelProcess() */ func GinkgoParallelNode() int { … } type Benchmarker … /* Deprecated: Measure() has been removed from Ginkgo 2.0 Use Gomega's gmeasure package instead. You can learn more here: https://onsi.github.io/ginkgo/#benchmarking-code */ func Measure(_ ...interface{ … }