diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-11-04 12:51:29 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-11-04 14:28:29 +0100 |
commit | 74d375d8ea785e304dd679cc677568bdbf4a4caf (patch) | |
tree | c686c5569e8447f3614994bee09792983d3dfcc7 /tests/karma.config.js | |
parent | d5c98add589ce71aed5ac9973e4a000e9d95aab5 (diff) | |
download | nextcloud-server-74d375d8ea785e304dd679cc677568bdbf4a4caf.tar.gz nextcloud-server-74d375d8ea785e304dd679cc677568bdbf4a4caf.zip |
migrate jQuery to bower
Diffstat (limited to 'tests/karma.config.js')
-rw-r--r-- | tests/karma.config.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/karma.config.js b/tests/karma.config.js index f67fa9977c2..414f1552584 100644 --- a/tests/karma.config.js +++ b/tests/karma.config.js @@ -120,6 +120,12 @@ module.exports = function(config) { 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]; @@ -135,12 +141,6 @@ module.exports = function(config) { } } - // add vendor library files - for ( i = 0; i < coreModule.vendor.length; i++ ) { - srcFile = vendorPath + coreModule.vendor[i]; - files.push(srcFile); - } - // TODO: settings pages // need to test the core app as well ? |