From 35a853ffffc5372cd420a5a1b25855845e14de0a Mon Sep 17 00:00:00 2001 From: Caleb James DeLisle Date: Thu, 12 Jan 2017 12:06:44 +0100 Subject: [PATCH] Stop failing tests over missing translations because otherwise they'll almost never be passing. --- www/assert/main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/assert/main.js b/www/assert/main.js index f3b6c6fe2..07966a874 100644 --- a/www/assert/main.js +++ b/www/assert/main.js @@ -149,7 +149,8 @@ define([ console.log('* ' + msg); }); - return false; + // No, this is crappy, it's going to cause tests to fail basically all of the time. + //return false; } return true; }, "expected all translation keys in default language to be present in all translations. See console for details.");