mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
14 lines
238 B
Go
14 lines
238 B
Go
|
package sanity
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/prysmaticlabs/prysm/config/features"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
resetCfg := features.InitWithReset(&features.Flags{EnableBalanceTrieComputation: true})
|
||
|
defer resetCfg()
|
||
|
m.Run()
|
||
|
}
|