diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-07-13 17:31:47 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-11-22 16:05:49 +0100 |
commit | f120846e291bf83244831770c5f25b730fa8ba90 (patch) | |
tree | d15856a288b5f443f4f7838d99529efacfd0e802 /tests/karma.config.js | |
parent | fb3d5c7856b9fbed926091e91ec54de023859df8 (diff) | |
download | nextcloud-server-f120846e291bf83244831770c5f25b730fa8ba90.tar.gz nextcloud-server-f120846e291bf83244831770c5f25b730fa8ba90.zip |
Added OC.Files.Client Webdav-based files client
Diffstat (limited to 'tests/karma.config.js')
-rw-r--r-- | tests/karma.config.js | 6 |
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' }; } |