20 lines
321 B
Go
20 lines
321 B
Go
|
package integration_test
|
||
|
|
||
|
import (
|
||
|
"github.com/sirupsen/logrus"
|
||
|
"io/ioutil"
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/onsi/ginkgo"
|
||
|
. "github.com/onsi/gomega"
|
||
|
)
|
||
|
|
||
|
func TestIntegration(t *testing.T) {
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "integration test suite")
|
||
|
}
|
||
|
|
||
|
var _ = BeforeSuite(func() {
|
||
|
logrus.SetOutput(ioutil.Discard)
|
||
|
})
|