github.com/prysmaticlabs/prysm@v1.4.4/slasher/detection/proposals/proposals_test.go (about)

     1  package proposals
     2  
     3  import (
     4  	"io/ioutil"
     5  	"testing"
     6  
     7  	"github.com/sirupsen/logrus"
     8  )
     9  
    10  func TestMain(m *testing.M) {
    11  	logrus.SetLevel(logrus.DebugLevel)
    12  	logrus.SetOutput(ioutil.Discard)
    13  
    14  	m.Run()
    15  }