ipld-eth-server/libraries/shared/streamer/streamer_suite_test.go

20 lines
307 B
Go
Raw Normal View History

2019-07-02 12:34:27 +00:00
package streamer_test
import (
2019-07-10 20:30:47 +00:00
"io/ioutil"
2019-07-02 12:34:27 +00:00
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
2019-07-10 20:30:47 +00:00
"github.com/sirupsen/logrus"
2019-07-02 12:34:27 +00:00
)
func TestStreamer(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Streamer Suite")
}
2019-07-10 20:30:47 +00:00
var _ = BeforeSuite(func() {
logrus.SetOutput(ioutil.Discard)
})