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; } } }