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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-11-04 14:51:29 +0300
committerMorris Jobke <hey@morrisjobke.de>2014-11-04 16:28:29 +0300
commit74d375d8ea785e304dd679cc677568bdbf4a4caf (patch)
treec686c5569e8447f3614994bee09792983d3dfcc7 /tests/karma.config.js
parentd5c98add589ce71aed5ac9973e4a000e9d95aab5 (diff)
migrate jQuery to bower
Diffstat (limited to 'tests/karma.config.js')
-rw-r--r--tests/karma.config.js12
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 ?