prysm-pulse/beacon-chain/powchain/powchain_test.go

16 lines
186 B
Go
Raw Normal View History

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