mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-20 16:41:11 +00:00
a984605064
* add new changes * fix it all * add nicer scenario * some more cleanup * restructure tests * godoc * skip one scenario * space * fix test * clean up * fix conflicts Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
14 lines
214 B
Go
14 lines
214 B
Go
package endtoend
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestEndToEnd_MinimalConfig(t *testing.T) {
|
|
e2eMinimal(t, false, 3).run()
|
|
}
|
|
|
|
func TestEndToEnd_MinimalConfig_Web3Signer(t *testing.T) {
|
|
e2eMinimal(t, true, 0).run()
|
|
}
|