From 3d72233d541841d49ea0cc64d65ec473afd54572 Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Thu, 15 Sep 2016 11:43:39 +0200 Subject: [PATCH] fix Gruntfile path to old client tests --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 9a41dea02a..33d93ae49d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -133,7 +133,7 @@ module.exports = function(grunt) { grunt.registerTask('test:prepare:translations', function() { var i18n = require('./website/server/libs/i18n'), fs = require('fs'); - fs.writeFileSync('test/spec/mocks/translations.js', + fs.writeFileSync('test/client-old/spec/mocks/translations.js', "if(!window.env) window.env = {};\n" + "window.env.translations = " + JSON.stringify(i18n.translations['en']) + ';'); });