mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-11 04:00:05 +00:00
260847e92f
* Fix long running e2e deposit processing * Merge branch 'master' of github.com:prysmaticlabs/prysm into fix-long-e2e * Remove logs * Uncomment * typing * Reorder * Add const for node count * Merge refs/heads/master into fix-long-e2e * Add trace logging * Merge branch 'fix-long-e2e' of github.com:prysmaticlabs/prysm into fix-long-e2e
39 lines
892 B
Go
39 lines
892 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_Slashing_MinimalConfig(t *testing.T) {
|
|
testutil.ResetCache()
|
|
params.UseE2EConfig()
|
|
if err := e2eParams.Init(2); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
minimalConfig := &types.E2EConfig{
|
|
BeaconFlags: []string{},
|
|
ValidatorFlags: []string{},
|
|
EpochsToRun: 3,
|
|
TestSync: false,
|
|
TestSlasher: true,
|
|
TestDeposits: false,
|
|
Evaluators: []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.HealthzCheck,
|
|
ev.ValidatorsSlashed,
|
|
ev.SlashedValidatorsLoseBalance,
|
|
ev.InjectDoubleVote,
|
|
ev.ProposeDoubleBlock,
|
|
},
|
|
}
|
|
|
|
runEndToEndTest(t, minimalConfig)
|
|
}
|