An open API service indexing awesome lists of open source software.

https://github.com/codewars/ginkgo

Custom reporter for Ginkgo
https://github.com/codewars/ginkgo

code-runner test-reporting

Last synced: 12 months ago
JSON representation

Custom reporter for Ginkgo

Awesome Lists containing this project

README

          

## Codewars Ginkgo Reporter

Custom reporter for [Ginkgo](http://onsi.github.io/ginkgo/) testing framework.

### Usage

```go
package example_test

import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
"github.com/Codewars/ginkgo/reporter"
)

func TestExample(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecsWithCustomReporters(t, "Example Test", []Reporter{reporter.New()})
}
```