summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-06-19 01:21:21 +0200
committerMorris Jobke <hey@morrisjobke.de>2014-06-19 01:21:21 +0200
commited10f56994c7a6909a0d9ace53c61c2a70000ba4 (patch)
treedc00f7cedb5e2ca90f7b60a9913d71d2321c697d /tests
parent1973fdb11d9934f19928a10e0f6d11b5dc87ed25 (diff)
parent58c204abb472f2efeda4b0386cbb7be5e3a4bafd (diff)
downloadnextcloud-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.js10
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']
}];
}