diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-04-11 15:27:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-11 15:27:12 +0200 |
commit | a18a853e68573d1df18f5e9c322ee27236152ee0 (patch) | |
tree | ffd008cacc33a3544730c911a61ff2c6446d499e /tests | |
parent | b7009753b3d62ff400e17ac59ab353a6102ae015 (diff) | |
parent | 16bf9326cb1ccb54351c04193755ade0f49588b4 (diff) | |
download | nextcloud-server-a18a853e68573d1df18f5e9c322ee27236152ee0.tar.gz nextcloud-server-a18a853e68573d1df18f5e9c322ee27236152ee0.zip |
Merge pull request #7800 from Abijeet/bug-7281
Fixes the usability issues with the comment section delete and edit
Diffstat (limited to 'tests')
-rw-r--r-- | tests/karma.config.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/karma.config.js b/tests/karma.config.js index 0254d6a3335..3758636f074 100644 --- a/tests/karma.config.js +++ b/tests/karma.config.js @@ -93,6 +93,7 @@ module.exports = function(config) { 'apps/comments/js/commentmodel.js', 'apps/comments/js/commentcollection.js', 'apps/comments/js/commentsummarymodel.js', + 'apps/comments/js/commentsmodifymenu.js', 'apps/comments/js/commentstabview.js', 'apps/comments/js/filesplugin.js' ], @@ -223,7 +224,7 @@ module.exports = function(config) { // serve images to avoid warnings files.push({pattern: 'core/img/**/*', watched: false, included: false, served: true}); files.push({pattern: 'core/css/images/*', watched: false, included: false, served: true}); - + // include core CSS files.push({pattern: 'core/css/*.css', watched: true, included: true, served: true}); files.push({pattern: 'tests/css/*.css', watched: true, included: true, served: true}); |