mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
31a78ab22a
* add config/features * Gazelle * Gazelle * Fix build * Go mod tidy * active cache Co-authored-by: rauljordan <raul@prysmaticlabs.com>
14 lines
232 B
Go
14 lines
232 B
Go
package stateutil_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/config/features"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
resetCfg := features.InitWithReset(&features.Flags{EnableSSZCache: true})
|
|
defer resetCfg()
|
|
m.Run()
|
|
}
|