Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2017-12-18 16:28:49 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2017-12-18 16:28:49 +0300
commit7a244b100a342df1531002f2dd64f554af1c5578 (patch)
tree10a27e973480ff2107b60c97bcfbfc80c1d84ec4 /karma.conf.js
parent3e85b1257690258a843e608050cc438c8245d984 (diff)
Try to migrate away from global js dependencies
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'karma.conf.js')
-rw-r--r--karma.conf.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/karma.conf.js b/karma.conf.js
index 2247d64f6..a7b43325f 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -3,7 +3,7 @@
var webpackConfig = require('./js/webpack.dev.config.js');
-webpackConfig.entry = './js/tests/noop_init.js';
+webpackConfig.entry = './js/tests/test_init.js';
webpackConfig.module.rules.push({
test: /\.js$/,
exclude: /init\.js/
@@ -17,7 +17,6 @@ module.exports = function (config) {
files: [
{pattern: 'node_modules/jquery/dist/jquery.js', included: true},
- {pattern: 'node_modules/underscore/underscore.js', included: true},
{pattern: 'js/tests/test-main.js', included: true},
// all files ending in "_test"
{pattern: 'js/tests/*_spec.js', watched: false},