prysm-pulse/beacon-chain/db/slasherkv/slasherkv_test.go

15 lines
197 B
Go
Raw Normal View History

package slasherkv
import (
"io/ioutil"
"testing"
"github.com/sirupsen/logrus"
)
func TestMain(m *testing.M) {
logrus.SetLevel(logrus.DebugLevel)
logrus.SetOutput(ioutil.Discard)
m.Run()
}