We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
comment-parser
1 parent bd24a7e commit 7e0bbbeCopy full SHA for 7e0bbbe
package.json
@@ -5,7 +5,7 @@
5
"url": "http://gajus.com"
6
},
7
"dependencies": {
8
- "comment-parser": "1.1.1",
+ "comment-parser": "1.1.2",
9
"debug": "^4.3.1",
10
"jsdoctypeparser": "^9.0.0",
11
"lodash": "^4.17.20",
test/rules/assertions/requireParamDescription.js
@@ -168,5 +168,19 @@ export default {
168
*/
169
`,
170
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
+ },
185
],
186
};
0 commit comments