mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 16:37:39 +00:00
34 lines
836 B
Go
34 lines
836 B
Go
package endtoend
|
|
|
|
import (
|
|
"testing"
|
|
|
|
ev "github.com/prysmaticlabs/prysm/endtoend/evaluators"
|
|
e2eParams "github.com/prysmaticlabs/prysm/endtoend/params"
|
|
"github.com/prysmaticlabs/prysm/endtoend/types"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
)
|
|
|
|
func TestEndToEnd_AntiFlake_MinimalConfig_2(t *testing.T) {
|
|
testutil.ResetCache()
|
|
params.UseMinimalConfig()
|
|
|
|
minimalConfig := &types.E2EConfig{
|
|
BeaconFlags: []string{"--minimal-config", "--custom-genesis-delay=10"},
|
|
ValidatorFlags: []string{"--minimal-config"},
|
|
EpochsToRun: 3,
|
|
TestSync: false,
|
|
TestSlasher: false,
|
|
Evaluators: []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.ValidatorsAreActive,
|
|
},
|
|
}
|
|
if err := e2eParams.Init(4); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
runEndToEndTest(t, minimalConfig)
|
|
}
|