Custom reporter for Ginkgo testing framework.
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()})
}