mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
15 lines
413 B
JavaScript
15 lines
413 B
JavaScript
'use strict';
|
|
|
|
describe('inline comments on function parameters', function() {
|
|
var docSet;
|
|
|
|
it('should not crash when multiple parameters have inline comments that do not contain any' +
|
|
'JSDoc tags', function() {
|
|
function loadDocSet() {
|
|
docSet = jasmine.getDocSetFromFile('test/fixtures/inlineparamcomment.js');
|
|
}
|
|
|
|
expect(loadDocSet).not.toThrow();
|
|
});
|
|
});
|