Files
2026-07-13 13:00:08 +08:00

16 lines
236 B
Go

package control
import (
"os"
"testing"
"go.uber.org/goleak"
)
func TestMain(m *testing.M) {
if os.Getenv("REASONIX_CREDENTIALS_STORE") == "" {
_ = os.Setenv("REASONIX_CREDENTIALS_STORE", "file")
}
goleak.VerifyTestMain(m)
}