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

When running ginkgo parallel testing with argument `--reportFile`, junit reporter should contain multiple reporter files, as follows: ```shell $ ginkgo --reportFile=/tmp/junit.xml --nodes=4 $ ls /tmp junit_01.xml junit_02.xml junit_03.xml junit_04.xml ```

Hello, Here is a suggested change to support running precompiled tests on windows via ginkgo CLI (see issue #529 for more details).

bug
needs-review

"ginkgo" can replace "go test" as test runner also for normal Go tests, but the output was different: - tests were always run with -test.v and thus produced output also...

This is a hacky way to do this, but should work. Open to other options.

The experience when parallel tests hang currently sucks. (See #323 and #206) I had some time recently to try out a few ideas and landed on this PR that I'd...

So in order to add a lot of different contexts in which one result should always be consistent, I currently have a lot of statements which say the same thing,...

I'm looking for a way to run some code for each `Context` but not for the `It`s inside. Example: ``` package main import ( . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var...

v2