Skip to content

v0.7.0

Compare
Choose a tag to compare
@nunnatsa nunnatsa released this 15 Jan 16:34
· 123 commits to main since this release

This version adds support in the usage of gomega without ginkgo.

For example:

func TestSomething(t *testing.T) {
    g := NewGomegaWithT(t)

    var err error
    g.Expect(err).ToNot(BeNil())
}