mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
12 lines
274 B
JavaScript
12 lines
274 B
JavaScript
'use strict';
|
|
|
|
describe('anonymous class', function() {
|
|
it('should not crash JSDoc', function() {
|
|
function getDocs() {
|
|
return jasmine.getDocSetFromFile('test/fixtures/anonymousclass.js');
|
|
}
|
|
|
|
expect(getDocs).not.toThrow();
|
|
});
|
|
});
|