node-query/node_modules/jsdoc/test/specs/tags/undocumentedtag.js

14 lines
412 B
JavaScript

describe("@undocumented tag", function() {
var docSet = jasmine.getDocSetFromFile('test/fixtures/undocumentedtag.js'),
doc = docSet.getByLongname('x')[0];
it("sets the doclet's 'undocumented' property to true", function () {
expect(doc.undocumented).toBeTruthy();
});
it("clears the doclet's 'comment' property", function () {
expect(doc.comment).toBe('');
});
});