X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/0f406b246f9261651b5982be71a49189349c8e3e..4dc1ebae49699f3be2dfd6d1f0f41e4bac99660b:/tests/main.js diff --git a/tests/main.js b/tests/main.js index 9614d72..e2028fa 100644 --- a/tests/main.js +++ b/tests/main.js @@ -1,30 +1,58 @@ -(function() { - - mocha.setup('tdd'); - - var tests = Object.keys(window.__karma__.files).filter(function (file) { - return /\.test\.js$/.test(file); - }); - - require({ - baseUrl: '/base/', - deps: tests, - callback: window.__karma__.start, - shim: { - 'libs/jquery-1.9.1.min': { - exports: '$', - }, - 'libs/underscore-min': { - exports: '_' - }, - 'libs/bootstrap/js/bootstrap.min': { - deps: ['libs/jquery-1.9.1.min'] - }, - 'libs/backbone-min': { - exports: 'Backbone', - deps: ['libs/jquery-1.9.1.min', 'libs/underscore-min'] - } - } - }); - +(function() { + + mocha.setup('bdd'); + + var tests = Object.keys(window.__karma__.files).filter(function (file) { + return (/\.test\.js$/).test(file); + }); + + /* globals window */ + // This installs noop i18n functions so that tests can work with i18nized code + window.gettext = window.interpolate = function() { + return Array.prototype.slice.call(arguments, 0); + }; + + require({ + baseUrl: '/base/src/editor', + deps: tests, + callback: window.__karma__.start, + + paths: { + 'fnpjs': '../fnpjs', + 'libs': '../../libs', + 'smartxml': '../smartxml', + 'wlxml': '../wlxml' + }, + + map: { + '*': + { + 'libs/jquery': '../../libs/jquery-1.9.1.min', + 'libs/underscore': '../../libs/underscore-min', + 'libs/bootstrap': '../../libs/bootstrap/js/bootstrap.min', + 'libs/backbone': '../../libs/backbone-min', + 'libs/sinon': '../../libs/sinon-1.7.3' + } + }, + + shim: { + '../../libs/jquery-1.9.1.min': { + exports: '$', + }, + '../../libs/underscore-min': { + exports: '_' + }, + '../../libs/bootstrap/js/bootstrap.min': { + deps: ['libs/jquery'] + }, + '../../libs/backbone-min': { + exports: 'Backbone', + deps: ['libs/jquery', 'libs/underscore'] + }, + '../../libs/sinon-1.7.3': { + exports: 'sinon' + } + } + }); + })(); \ No newline at end of file