diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-09-01 19:29:55 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-09-03 16:47:24 +0200 |
commit | 310d79728447ecf69f18d0b61a527397bd961888 (patch) | |
tree | 805b2a0a40ed5ce7acb58afb90ad7c18e760e037 /tests | |
parent | e9e42fff61a922f11a3b1014d810562537950b6a (diff) | |
download | nextcloud-server-310d79728447ecf69f18d0b61a527397bd961888.tar.gz nextcloud-server-310d79728447ecf69f18d0b61a527397bd961888.zip |
Add versions tab to files sidebar
- move versions to a tab in the files sidebar
- added mechanism to auto-update the row in the FileList whenever values
are set to the FileInfoModel given to the sidebar
- updated tags/favorite action to make use of that new mechanism
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 7b3877f7766..d3280b2939a 100644 --- a/tests/karma.config.js +++ b/tests/karma.config.js @@ -71,6 +71,16 @@ module.exports = function(config) { testFiles: ['apps/files_external/tests/js/*.js'] }, { + name: 'files_versions', + srcFiles: [ + // need to enforce loading order... + 'apps/files_versions/js/versionmodel.js', + 'apps/files_versions/js/versioncollection.js', + 'apps/files_versions/js/versionstabview.js' + ], + testFiles: ['apps/files_versions/tests/js/**/*.js'] + }, + { name: 'settings', srcFiles: [ 'settings/js/apps.js', |