mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
* Prepare e2e for v0.12 * Fix e2e * Comments * Attempt 100% participation * Fixes * Fix * Update readme Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
37 lines
834 B
Go
37 lines
834 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_Genesis_MinimalConfig(t *testing.T) {
|
|
testutil.ResetCache()
|
|
params.UseE2EConfig()
|
|
|
|
minimalConfig := &types.E2EConfig{
|
|
BeaconFlags: []string{},
|
|
ValidatorFlags: []string{},
|
|
EpochsToRun: 4,
|
|
TestSync: false,
|
|
TestSlasher: false,
|
|
Evaluators: []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.HealthzCheck,
|
|
ev.ValidatorsAreActive,
|
|
ev.ValidatorsParticipating,
|
|
ev.MetricsCheck,
|
|
},
|
|
}
|
|
if err := e2eParams.Init(2); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
runEndToEndTest(t, minimalConfig)
|
|
}
|