Skip to content

Commit 7e0bbbe

Browse files
committed
fix: update comment-parser; fixes #686
1 parent bd24a7e commit 7e0bbbe

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"url": "http://gajus.com"
66
},
77
"dependencies": {
8-
"comment-parser": "1.1.1",
8+
"comment-parser": "1.1.2",
99
"debug": "^4.3.1",
1010
"jsdoctypeparser": "^9.0.0",
1111
"lodash": "^4.17.20",

test/rules/assertions/requireParamDescription.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,5 +168,19 @@ export default {
168168
*/
169169
`,
170170
},
171+
{
172+
code: `
173+
/**
174+
* Checks if the XML document sort of equals another XML document.
175+
* @param {Object} obj The other object.
176+
* @param {{includeWhiteSpace: (boolean|undefined),
177+
* ignoreElementOrder: (boolean|undefined)}} [options] The options.
178+
* @return {expect.Assertion} The assertion.
179+
*/
180+
expect.Assertion.prototype.xmleql = function (obj, options) {
181+
}
182+
`,
183+
ignoreReadme: true,
184+
},
171185
],
172186
};

0 commit comments

Comments
 (0)