This commit is contained in:
2026-01-08 12:07:32 -06:00
parent ef94b55058
commit 8203f6d1c3
16 changed files with 75 additions and 178 deletions

View File

@@ -314,7 +314,7 @@ function run_tests(package_name, specific_test) {
if (is_text(ret)) {
throw new Error(ret)
} else if (ret && (is_text(ret.message) || ret instanceof Error)) {
} else if (ret && (is_text(ret.message) || is_proto(ret, Error))) {
throw ret
}