mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 17:44:29 +00:00
cda14447ad
Co-authored-by: Giulio <giulio.rebuffo@gmail.com>
18 lines
352 B
Go
18 lines
352 B
Go
//go:build spectest
|
|
|
|
// once all tests are implemented, we can allow this test in the ci build path
|
|
|
|
package spectest
|
|
|
|
import (
|
|
"github.com/ledgerwatch/erigon/cl/spectest/consensus_tests"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/ledgerwatch/erigon/spectest"
|
|
)
|
|
|
|
func Test(t *testing.T) {
|
|
spectest.RunCases(t, consensus_tests.TestFormats, os.DirFS("./tests"))
|
|
}
|