From 6eebee0c5ecc9ef99a54df253b67ece256cba3d8 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Tue, 6 Jan 2026 00:21:56 +0100 Subject: [PATCH] Update test/backend-test/check-translations.test.js Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- test/backend-test/check-translations.test.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/test/backend-test/check-translations.test.js b/test/backend-test/check-translations.test.js index e4be1ffdf..df2be8e1e 100644 --- a/test/backend-test/check-translations.test.js +++ b/test/backend-test/check-translations.test.js @@ -51,11 +51,8 @@ describe("Check Translations", () => { } }); } catch (e) { - if (e instanceof TypeError && e.message.includes("is not a function")) { - // Ignore errors from binary files - } else { - console.error(`Error processing file: ${filePath}`, e); - } + console.error(`Error processing file: ${filePath}`, e); + throw e; } } }