diff --git a/.gitignore b/.gitignore
index fa49588fad4b2a9fc3c114c11c77599d5ba1ad68..d8669fed074382ef61978020bef10922f5e94a7a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -124,6 +124,7 @@ Vagrantfile
 # Tests - auto-generated files
 /data-autotest
 /tests/coverage*
+/tests/css
 /tests/karma-coverage
 /tests/autoconfig*
 /tests/autotest*
diff --git a/settings/tests/js/appsSpec.js b/settings/tests/js/appsSpec.js
index aa785a6768e9d0c1139f060a422076b6bf36edb7..4b917b425c14a75a0d25b9ce39d2c0018ef3fe69 100644
--- a/settings/tests/js/appsSpec.js
+++ b/settings/tests/js/appsSpec.js
@@ -185,23 +185,27 @@ describe('OC.Settings.Apps tests', function() {
 						{
 							id: 'foo',
 							name: 'Foo app',
+							description: 'Hello',
 							level: 0,
 							author: 'foo'
 						},
 						{
 							id: 'alpha',
 							name: 'Alpha app',
+							description: 'Hello',
 							level: 300,
 							author: ['alpha', 'beta']
 						},
 						{
 							id: 'nolevel',
 							name: 'No level',
+							description: 'Hello',
 							author: 'bar'
 						},
 						{
 							id: 'zork',
 							name: 'Some famous adventure game',
+							description: 'Hello',
 							level: 200,
 							author: 'baz'
 
@@ -209,6 +213,7 @@ describe('OC.Settings.Apps tests', function() {
 						{
 							id: 'delta',
 							name: 'Mathematical symbol',
+							description: 'Hello',
 							level: 200,
 							author: 'foobar'
 						}
@@ -223,29 +228,34 @@ describe('OC.Settings.Apps tests', function() {
 				'foo': {
 					id: 'foo',
 					name: 'Foo app',
+					description: 'Hello',
 					level: 0,
 					author: 'foo'
 				},
 				'alpha': {
 					id: 'alpha',
 					name: 'Alpha app',
+					description: 'Hello',
 					level: 300,
 					author: ['alpha', 'beta']
 				},
 				'nolevel': {
 					id: 'nolevel',
 					name: 'No level',
+					description: 'Hello',
 					author: 'bar'
 				},
 				'zork': {
 					id: 'zork',
 					name: 'Some famous adventure game',
+					description: 'Hello',
 					level: 200,
 					author: 'baz',
 				},
 				'delta': {
 					id: 'delta',
 					name: 'Mathematical symbol',
+					description: 'Hello',
 					level: 200,
 					author: 'foobar'
 				}
diff --git a/tests/karma.config.js b/tests/karma.config.js
index c499451c7dc46771801bd0305a687f86b10a3fc6..8a41f0162b580cabfbdb8554a6a0e80e01cb397e 100644
--- a/tests/karma.config.js
+++ b/tests/karma.config.js
@@ -110,7 +110,8 @@ module.exports = function(config) {
 				name: 'settings',
 				srcFiles: [
 					'settings/js/apps.js',
-					'settings/js/users/deleteHandler.js'
+					'settings/js/users/deleteHandler.js',
+					'core/vendor/marked/marked.min.js'
 				],
 				testFiles: [
 					'settings/tests/js/appsSpec.js',