diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-06-19 01:21:21 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-06-19 01:21:21 +0200 |
commit | ed10f56994c7a6909a0d9ace53c61c2a70000ba4 (patch) | |
tree | dc00f7cedb5e2ca90f7b60a9913d71d2321c697d /tests | |
parent | 1973fdb11d9934f19928a10e0f6d11b5dc87ed25 (diff) | |
parent | 58c204abb472f2efeda4b0386cbb7be5e3a4bafd (diff) | |
download | nextcloud-server-ed10f56994c7a6909a0d9ace53c61c2a70000ba4.tar.gz nextcloud-server-ed10f56994c7a6909a0d9ace53c61c2a70000ba4.zip |
Merge pull request #9071 from owncloud/extstorage-list-unittests
Added JS unit tests for ext storage
Diffstat (limited to 'tests')
-rw-r--r-- | tests/karma.config.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/karma.config.js b/tests/karma.config.js index 1f903f58210..290790686b0 100644 --- a/tests/karma.config.js +++ b/tests/karma.config.js @@ -56,6 +56,16 @@ module.exports = function(config) { 'apps/files_sharing/js/share.js' ], testFiles: ['apps/files_sharing/tests/js/*.js'] + }, + { + name: 'files_external', + srcFiles: [ + // only test these files, others are not ready and mess + // up with the global namespace/classes/state + 'apps/files_external/js/app.js', + 'apps/files_external/js/mountsfilelist.js' + ], + testFiles: ['apps/files_external/tests/js/*.js'] }]; } |