mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 19:50:36 +00:00
436493350e
1. changes sentinel to use an http-like interface 2. moves hexutil, crypto/blake2b, metrics packages to erigon-lib
17 lines
330 B
Go
17 lines
330 B
Go
package spectest
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/ledgerwatch/erigon/spectest"
|
|
|
|
"github.com/ledgerwatch/erigon/cl/transition"
|
|
|
|
"github.com/ledgerwatch/erigon/cl/spectest/consensus_tests"
|
|
)
|
|
|
|
func Test(t *testing.T) {
|
|
spectest.RunCases(t, consensus_tests.TestFormats, transition.ValidatingMachine, os.DirFS("./tests"))
|
|
}
|