acf8e6f96a
* Add chainID flag and make chainConfig optional * Add prometheus metrics to monitor validation progress * Make writeStateDiffAt calls on missing blocks * Update docs and config improvements * Use standard logger * Add copyright to files * Upgrade dependencies
20 lines
327 B
Go
20 lines
327 B
Go
package validator_test
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func TestETHSuite(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "eth ipld validator eth suite test")
|
|
}
|
|
|
|
var _ = BeforeSuite(func() {
|
|
logrus.SetOutput(ioutil.Discard)
|
|
})
|