mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
4e604ee22b
* merge checkpoint sync test with base minimal test * move web3signer to scenario test Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com> Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com>
12 lines
198 B
Go
12 lines
198 B
Go
package endtoend
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/endtoend/types"
|
|
)
|
|
|
|
func TestEndToEnd_MinimalConfig(t *testing.T) {
|
|
e2eMinimal(t, types.WithCheckpointSync()).run()
|
|
}
|