dependencies: update to ginkgo v2.6.1, gomega v1.24.2

Ginkgo v2.5.0 adds support for a "timeline": a full description of what happened
while a specific test ran, including failures, timeouts, and log output.

Ginkgo v2.6.0 adds ReportBeforeSuite which we need for
https://github.com/kubernetes/kubernetes/issues/114313.
This commit is contained in:
Patrick Ohly
2022-11-02 09:07:12 +01:00
parent bb6edfb96b
commit f3ef400431
129 changed files with 2000 additions and 1006 deletions

View File

@@ -27,7 +27,8 @@ func BeEquivalentTo(expected interface{}) types.GomegaMatcher {
}
}
// BeComparableTo uses gocmp.Equal to compare. You can pass cmp.Option as options.
// BeComparableTo uses gocmp.Equal from github.com/google/go-cmp (instead of reflect.DeepEqual) to perform a deep comparison.
// You can pass cmp.Option as options.
// It is an error for actual and expected to be nil. Use BeNil() instead.
func BeComparableTo(expected interface{}, opts ...cmp.Option) types.GomegaMatcher {
return &matchers.BeComparableToMatcher{