prysm-pulse/testing/endtoend/minimal_slashing_e2e_test.go
Raul Jordan a9a4bb9163
Move Shared/Testutil into Testing (#9659)
* move testutil

* util pkg

* build

* gaz

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-09-23 18:53:46 +00:00

38 lines
960 B
Go

package endtoend
import (
"testing"
"github.com/prysmaticlabs/prysm/config/params"
ev "github.com/prysmaticlabs/prysm/testing/endtoend/evaluators"
e2eParams "github.com/prysmaticlabs/prysm/testing/endtoend/params"
"github.com/prysmaticlabs/prysm/testing/endtoend/types"
"github.com/prysmaticlabs/prysm/testing/require"
)
func TestEndToEnd_Slashing_MinimalConfig(t *testing.T) {
t.Skip("To be replaced with the new slasher implementation")
params.UseE2EConfig()
require.NoError(t, e2eParams.Init(e2eParams.StandardBeaconCount))
testConfig := &types.E2EConfig{
BeaconFlags: []string{},
ValidatorFlags: []string{},
EpochsToRun: 4,
TestSync: false,
TestSlasher: true,
TestDeposits: false,
Evaluators: []types.Evaluator{
ev.PeersConnect,
ev.HealthzCheck,
ev.ValidatorsSlashed,
ev.SlashedValidatorsLoseBalance,
ev.InjectDoubleVote,
ev.ProposeDoubleBlock,
},
}
newTestRunner(t, testConfig).run()
}