mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
15 lines
262 B
Go
15 lines
262 B
Go
|
package stateutil_test
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/prysmaticlabs/prysm/shared/featureconfig"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{EnableSSZCache: true})
|
||
|
defer resetCfg()
|
||
|
os.Exit(m.Run())
|
||
|
}
|