mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 03:01:19 +00:00
14 lines
311 B
Go
14 lines
311 B
Go
|
package endtoend
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/prysmaticlabs/prysm/v4/runtime/version"
|
||
|
"github.com/prysmaticlabs/prysm/v4/testing/endtoend/types"
|
||
|
)
|
||
|
|
||
|
func TestEndToEnd_MinimalConfig_WithBuilder(t *testing.T) {
|
||
|
r := e2eMinimal(t, version.Phase0, types.WithCheckpointSync(), types.WithBuilder())
|
||
|
r.run()
|
||
|
}
|