diff options
author | Joas Schilling <coding@schilljs.com> | 2017-01-17 11:11:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-17 11:11:16 +0100 |
commit | aea1b72f54d72331b8ea3b4e9cd4338ffbfe8ee9 (patch) | |
tree | d363ec4d37d33e14ab29c445fbfd6a7efd4741b3 /settings/tests/js/appsSpec.js | |
parent | 012708e1badebe5dab6260c2e9edb521d5dbfee0 (diff) | |
parent | 6ba7ba6e0c7109b82c44316b1cdb181c1d37dbc7 (diff) | |
download | nextcloud-server-aea1b72f54d72331b8ea3b4e9cd4338ffbfe8ee9.tar.gz nextcloud-server-aea1b72f54d72331b8ea3b4e9cd4338ffbfe8ee9.zip |
Merge pull request #1594 from nextcloud/markdown-support-for-app-descriptions
Markdown support for app descriptions
Diffstat (limited to 'settings/tests/js/appsSpec.js')
-rw-r--r-- | settings/tests/js/appsSpec.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/settings/tests/js/appsSpec.js b/settings/tests/js/appsSpec.js index aa785a6768e..4b917b425c1 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' } |