Skip to content

Commit

Permalink
fix: update comment-parser; fixes #686
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed Feb 7, 2021
1 parent bd24a7e commit 7e0bbbe
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -5,7 +5,7 @@
"url": "http://gajus.com"
},
"dependencies": {
"comment-parser": "1.1.1",
"comment-parser": "1.1.2",
"debug": "^4.3.1",
"jsdoctypeparser": "^9.0.0",
"lodash": "^4.17.20",
Expand Down
14 changes: 14 additions & 0 deletions test/rules/assertions/requireParamDescription.js
Expand Up @@ -168,5 +168,19 @@ export default {
*/
`,
},
{
code: `
/**
* Checks if the XML document sort of equals another XML document.
* @param {Object} obj The other object.
* @param {{includeWhiteSpace: (boolean|undefined),
* ignoreElementOrder: (boolean|undefined)}} [options] The options.
* @return {expect.Assertion} The assertion.
*/
expect.Assertion.prototype.xmleql = function (obj, options) {
}
`,
ignoreReadme: true,
},
],
};

0 comments on commit 7e0bbbe

Please sign in to comment.