Skip to content

Commit

Permalink
Updated expected results.
Browse files Browse the repository at this point in the history
  • Loading branch information
neogeek committed Sep 2, 2022
1 parent 9781723 commit 5a82d67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/dox.jsdoccomplex.test.js
Expand Up @@ -35,7 +35,7 @@ module.exports = {
}
]);
complexTypeParamAndReturn.tags[0].typesDescription.should
.equal('<code>number</code>|<code>string</code>|{ name: <code>string</code>, age: <code>number</code> }');
.equal('<code>number</code> | <code>string</code> | {name: <code>string</code>, age: <code>number</code>}');
complexTypeParamAndReturn.tags[0].string.should
.equal('{number|string|{name:string,age:number}} a');

Expand All @@ -48,7 +48,7 @@ module.exports = {
'Array'
]);
complexTypeParamAndReturn.tags[1].typesDescription.should
.equal('<code>number</code>|{ name: <code>string</code>, age: <code>number</code> }|<code>Array</code>');
.equal('<code>number</code> | {name: <code>string</code>, age: <code>number</code>} | <code>Array</code>');
complexTypeParamAndReturn.tags[1].string.should
.equal('{number|{name:string,age:number}|Array} a');

Expand All @@ -59,7 +59,7 @@ module.exports = {
}
]);
complexTypeParamAndReturn.tags[2].typesDescription.should
.equal('{ name: <code>string</code>, age: <code>number</code> }');
.equal('{name: <code>string</code>, age: <code>number</code>}');
complexTypeParamAndReturn.tags[2].string.should
.equal('{{name:string,age:number}}');

Expand Down

0 comments on commit 5a82d67

Please sign in to comment.