diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-12-21 09:37:53 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-01-09 15:02:00 +0100 |
commit | 01a6181d9f9fe3bcc931d6d231eace0cc11a9521 (patch) | |
tree | c3708fe44305200160b5cfe34287887350a9cd52 /tests | |
parent | b3b41413f83b0e7a020a209036ff20dd2222cb0d (diff) | |
download | nextcloud-server-01a6181d9f9fe3bcc931d6d231eace0cc11a9521.tar.gz nextcloud-server-01a6181d9f9fe3bcc931d6d231eace0cc11a9521.zip |
Don't load old vendor files during jsunit tests
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/karma.config.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/karma.config.js b/tests/karma.config.js index fc49056e177..fe60de3bdbb 100644 --- a/tests/karma.config.js +++ b/tests/karma.config.js @@ -148,7 +148,6 @@ module.exports = function(config) { // note that the loading order is important that's why they // are specified in a separate file var corePath = 'core/js/'; - var vendorPath = 'core/vendor/'; var coreModule = require('../' + corePath + 'core.json'); var testCore = false; var files = []; @@ -162,16 +161,11 @@ module.exports = function(config) { testCore = true; } + files.push('core/js/dist/main.js'); // core mocks files.push(corePath + 'tests/specHelper.js'); var srcFile, i; - // add vendor library files - for (i = 0; i < coreModule.vendor.length; i++) { - srcFile = vendorPath + coreModule.vendor[i]; - files.push(srcFile); - } - // add core library files for (i = 0; i < coreModule.libraries.length; i++) { srcFile = corePath + coreModule.libraries[i]; |