Skip to content

codewars/ginkgo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Codewars Ginkgo Reporter

Custom reporter for Ginkgo testing framework.

Usage

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()})
}