...

Source file src/github.com/onsi/ginkgo/v2/formatter/formatter_suite_test.go

Documentation: github.com/onsi/ginkgo/v2/formatter

     1  package formatter_test
     2  
     3  import (
     4  	"testing"
     5  
     6  	. "github.com/onsi/ginkgo/v2"
     7  	. "github.com/onsi/gomega"
     8  )
     9  
    10  func TestFormatter(t *testing.T) {
    11  	RegisterFailHandler(Fail)
    12  	RunSpecs(t, "Formatter Suite")
    13  }
    14  

View as plain text