func RootDir()

in testhelper/testhelper.go [17:23]


func RootDir() string {
	_, currentFile, _, ok := runtime.Caller(0)
	if !ok {
		panic(errors.New("error getting root directory"))
	}
	return path.Join(path.Dir(currentFile), "../..")
}