mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-31 16:21:21 +00:00
9644e6d220
a few TODO: remain to make this not a draft --------- Co-authored-by: Giulio <giulio.rebuffo@gmail.com>
18 lines
368 B
Go
18 lines
368 B
Go
//go:build spectest
|
|
|
|
// once all tests are implemented, we can allow this test in the ci build path
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/ledgerwatch/erigon/cmd/ef-tests-cl/consensus_tests"
|
|
"github.com/ledgerwatch/erigon/cmd/ef-tests-cl/spectest"
|
|
)
|
|
|
|
func Test(t *testing.T) {
|
|
spectest.RunCases(t, consensus_tests.TestFormats, os.DirFS("./tests"))
|
|
}
|