Сравнить коммиты

..

1 коммит
main ... v1.1.0

Автор SHA1 Сообщение Дата
Softonik
f199c7ace8 Если стек указывает на helpers.go - то смотрим выше 2025-06-09 14:02:47 +03:00

Просмотреть файл

@ -44,6 +44,9 @@ func getTestAssertPlace() string {
} }
func getTestAssertFullPathPlace() string { func getTestAssertFullPathPlace() string {
_, file, line, _ := runtime.Caller(CALL_STACK_DEPTH_TO_TEST_FILE) _, file, line, _ := runtime.Caller(CALL_STACK_DEPTH_TO_TEST_FILE)
if strings.HasSuffix(file, "godog_and_gomega/helpers.go") {
_, file, line, _ = runtime.Caller(CALL_STACK_DEPTH_TO_TEST_FILE + 1)
}
return fmt.Sprintf("%v:%v", file, line) return fmt.Sprintf("%v:%v", file, line)
} }
func getProjectRootRelativeTestAssertPlace(place string) string { func getProjectRootRelativeTestAssertPlace(place string) string {