prysm-pulse/beacon-chain/p2p/peers/peers_test.go

25 lines
425 B
Go
Raw Normal View History

package peers_test
import (
"io"
"testing"
"github.com/prysmaticlabs/prysm/v3/cmd/beacon-chain/flags"
"github.com/sirupsen/logrus"
)
func TestMain(m *testing.M) {
logrus.SetLevel(logrus.DebugLevel)
logrus.SetOutput(io.Discard)
resetFlags := flags.Get()
flags.Init(&flags.GlobalFlags{
BlockBatchLimit: 64,
BlockBatchLimitBurstFactor: 10,
})
defer func() {
flags.Init(resetFlags)
}()
m.Run()
}