build(aio): fix mergeDecoratorDocs processor
This commit is contained in:
parent
0e71836cd5
commit
df7b875f6c
|
@ -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
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue