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:
authorVincent Petry <pvince81@owncloud.com>2015-07-13 18:31:47 +0300
committerLukas Reschke <lukas@owncloud.com>2015-11-22 18:05:49 +0300
commitf120846e291bf83244831770c5f25b730fa8ba90 (patch)
treed15856a288b5f443f4f7838d99529efacfd0e802 /tests/karma.config.js
parentfb3d5c7856b9fbed926091e91ec54de023859df8 (diff)
Added OC.Files.Client Webdav-based files client
Diffstat (limited to 'tests/karma.config.js')
-rw-r--r--tests/karma.config.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/karma.config.js b/tests/karma.config.js
index 64a94ef230b..dc621ae0f74 100644
--- a/tests/karma.config.js
+++ b/tests/karma.config.js
@@ -164,15 +164,15 @@ module.exports = function(config) {
// need to test the core app as well ?
if (testCore) {
// core tests
- files.push(corePath + 'tests/specs/*.js');
+ files.push(corePath + 'tests/specs/**/*.js');
}
function addApp(app) {
// if only a string was specified, expand to structure
if (typeof(app) === 'string') {
app = {
- srcFiles: 'apps/' + app + '/js/*.js',
- testFiles: 'apps/' + app + '/tests/js/*.js'
+ srcFiles: 'apps/' + app + '/js/**/*.js',
+ testFiles: 'apps/' + app + '/tests/js/**/*.js'
};
}