ginkgo icon indicating copy to clipboard operation
ginkgo copied to clipboard

A Modern Testing Framework for Go

Results 190 ginkgo issues
Sort by recently updated
recently updated
newest added

github.com/onsi/gomega they have upgraded to new version, could you please fix it which is indirectly causing Fortify scan issue

What I'm doing now, which may be completely misguided: * For long-running tests, I want to periodically poll some system information and add it to the spec reports. * I...

We are using `ginkgo` (and `gomega`) to build e2e tests which run against a Kubernetes cluster. Succinctly, my goal is to have a way to gather and dump pod logs...

After a summary of filtered specs, I got a lot of character `S` printed. And the number of characters is not stable. And sometime they just disappear. ``` $ ./test.test...

Sample code: ` var _ = Describe("Books", Ordered, func() { var str string It("test1", func() { str = "123" }) It("test2", func() { gomega.Ω(str).Should(gomega.Equal("123")) }) It("test3", func() { }) })...

Sample code: ` var _ = Describe("Books", Ordered, func() { var str string It("test1", func() { str = "123" }) It("test2", func() { gomega.Ω(str).Should(gomega.Equal("123")) }) It("test3", func() { }) })...

It looks like Go 1.19 has made some changes to the `-gcflags` build flag. [A test](https://github.com/onsi/ginkgo/blob/9327906eb7d91b2ca69a0cd7837ae3f0e2dba7fa/integration/flags_test.go#L148-L153) now fails with: ``` /home/runner/work/cloud-service-broker/cloud-service-broker/integrationtest/integrationtest_suite_test.go:19 Unexpected error: : { s: "Failed to build github.com/cloudfoundry/cloud-service-broker:\n\nError:\nexit...

I wrote a test file that does not use any ginkgo code. I can run it fine using go test. when I run ginkgo -dry-run on the whole repository that...

I updated the ginkgo version to 2.1.4. In my older versions - the test run summary used to look like ``` Summarizing 4 Failures: [Panic!] MDCTestsForAuthorizationAndPermission [It] DatasetListAndGetAccessWithOwnerQualifier /go/src/cd.splunkdev.com/integration-tests/search/lib/common/common.go:554 [Panic!]...

Basically the title. This package is one of the few that I am aware of, which us a forked version of Sprig templates by masterminds, instead of the main repo....