2022-02-02 19:13:52 +00:00
|
|
|
package endtoend
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2022-12-21 04:43:29 +00:00
|
|
|
|
|
|
|
"github.com/prysmaticlabs/prysm/v3/config/params"
|
|
|
|
"github.com/prysmaticlabs/prysm/v3/runtime/version"
|
|
|
|
"github.com/prysmaticlabs/prysm/v3/testing/endtoend/types"
|
2022-02-02 19:13:52 +00:00
|
|
|
)
|
|
|
|
|
2022-04-28 08:45:59 +00:00
|
|
|
// Run mainnet e2e config with the current release validator against latest beacon node.
|
|
|
|
func TestEndToEnd_MainnetConfig_ValidatorAtCurrentRelease(t *testing.T) {
|
2022-12-21 04:43:29 +00:00
|
|
|
r := e2eMainnet(t, true, false, types.StartAt(version.Phase0, params.E2EMainnetTestConfig()))
|
|
|
|
r.run()
|
2022-02-02 19:13:52 +00:00
|
|
|
}
|