build(aio): fix mergeDecoratorDocs processor

This commit is contained in:
Peter Bacon Darwin 2017-07-06 13:33:39 +01:00 committed by Pete Bacon Darwin
parent 0e71836cd5
commit df7b875f6c
1 changed files with 11 additions and 6 deletions

View File

@ -26,12 +26,17 @@ describe('mergeDecoratorDocs processor', () => {
name: 'ComponentDecorator',
docType: 'interface',
description: 'A description of the interface for the call signature for the Component decorator',
members: [{
isCallMember: true,
description: 'The actual description of the call signature',
whatItDoes: 'Does something cool...',
howToUse: 'Use it like this...'
}],
members: [
{
isCallMember: true,
description: 'The actual description of the call signature',
whatItDoes: 'Does something cool...',
howToUse: 'Use it like this...'
},
{
description: 'Some other member'
}
],
moduleDoc
};