mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 00:27:38 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
23 lines
405 B
Go
23 lines
405 B
Go
package benchmark
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
)
|
|
|
|
func TestPreGenFullBlock(t *testing.T) {
|
|
_, err := PreGenFullBlock()
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestPreGenState1Epoch(t *testing.T) {
|
|
_, err := PreGenState1Epoch()
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestPreGenstateFullEpochs(t *testing.T) {
|
|
_, err := PreGenstateFullEpochs()
|
|
require.NoError(t, err)
|
|
}
|