diff options
-rw-r--r-- | web-ui/karma.conf.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/web-ui/karma.conf.js b/web-ui/karma.conf.js index 4e7406e0..adfd7d8a 100644 --- a/web-ui/karma.conf.js +++ b/web-ui/karma.conf.js @@ -50,10 +50,15 @@ module.exports = function (config) { {pattern: 'test/custom_matchers.js', included: false}, {pattern: 'test/features.js', included: false}, {pattern: 'test/spec/**/*.spec.js', included: false}, + {pattern: 'app/sandbox.html', included: true, served: true}, 'test/test-main.js' ], + proxies: { + '/sandbox/sandbox.html': '/base/app/sandbox.html', + }, + // list of files to exclude exclude: [ 'app/js/main.js' |