mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ACS-7706] create tags return promise tag paging instead of tag entry (#10869)
* [ACS-7706] Corrected returned type for createTags function * [ACS-7706] Updated documentation for createTags and fixed unit tests
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
import assert from 'assert';
|
||||
import { AlfrescoApi, TagBody, TagEntry, TagsApi } from '../../src';
|
||||
import { AlfrescoApi, TagBody, TagEntry, TagPaging, TagsApi } from '../../src';
|
||||
import { EcmAuthMock, TagMock } from '../mockObjects';
|
||||
|
||||
describe('Tags', () => {
|
||||
@@ -105,10 +105,10 @@ describe('Tags', () => {
|
||||
describe('createTags', () => {
|
||||
it('should return created tags', (done) => {
|
||||
tagMock.createTags201Response();
|
||||
tagsApi.createTags([new TagBody(), new TagBody()]).then((tags) => {
|
||||
assert.equal(tags.length, 2);
|
||||
assert.equal(tags[0].entry.tag, 'tag-test-1');
|
||||
assert.equal(tags[1].entry.tag, 'tag-test-2');
|
||||
tagsApi.createTags([new TagBody(), new TagBody()]).then((tags: TagPaging) => {
|
||||
assert.equal(tags.list.entries.length, 2);
|
||||
assert.equal(tags.list.entries[0].entry.tag, 'tag-test-1');
|
||||
assert.equal(tags.list.entries[1].entry.tag, 'tag-test-2');
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user