prysm-pulse/beacon-chain/blockchain/blockchain_test.go

16 lines
199 B
Go
Raw Normal View History

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