mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
c82f2d5657
* Increase time for test to start * Try anothre fix * Set minimum participation back to 100% * Change bnode count to 2 * Give extra wiggle room for metrics * Remove comment
38 lines
919 B
Go
38 lines
919 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_MinimalConfig(t *testing.T) {
|
|
testutil.ResetCache()
|
|
params.UseMinimalConfig()
|
|
|
|
minimalConfig := &types.E2EConfig{
|
|
BeaconFlags: []string{"--minimal-config", "--custom-genesis-delay=25"},
|
|
ValidatorFlags: []string{"--minimal-config"},
|
|
EpochsToRun: 6,
|
|
TestSync: true,
|
|
TestSlasher: true,
|
|
Evaluators: []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.HealthzCheck,
|
|
ev.ValidatorsAreActive,
|
|
ev.ValidatorsParticipating,
|
|
ev.FinalizationOccurs,
|
|
ev.MetricsCheck,
|
|
},
|
|
}
|
|
if err := e2eParams.Init(2); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
runEndToEndTest(t, minimalConfig)
|
|
}
|