diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-09-29 15:29:28 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-09-29 15:29:28 +0200 |
commit | 5e31a0318f12e5ec697ced89b5e08dfb62ea7b39 (patch) | |
tree | 2e25674680770a7695c66d34b9012534383eb8f0 | |
parent | 151ce2d842285f4581e3bc431e75000fbd8ed352 (diff) | |
download | sonarqube-5e31a0318f12e5ec697ced89b5e08dfb62ea7b39.tar.gz sonarqube-5e31a0318f12e5ec697ced89b5e08dfb62ea7b39.zip |
fix loader options for web tests
-rw-r--r-- | server/sonar-web/test/intern.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/server/sonar-web/test/intern.js b/server/sonar-web/test/intern.js index a1272e10f3c..70273be7ead 100644 --- a/server/sonar-web/test/intern.js +++ b/server/sonar-web/test/intern.js @@ -30,7 +30,11 @@ define(['intern'], function (intern) { loaderOptions: { paths: { - 'react': '../../build/js/libs/third-party/react-with-addons' + 'react': '../../build/js/libs/third-party/react-with-addons', + 'underscore': '../../build/js/libs/third-party/shim/underscore-shim', + 'jquery': '../../build/js/libs/third-party/shim/jquery-shim', + 'backbone': '../../build/js/libs/third-party/shim/backbone-shim', + 'backbone.marionette': '../../build/js/libs/third-party/shim/marionette-shim' }, map: { '*': { |