mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
14 lines
322 B
JavaScript
14 lines
322 B
JavaScript
var parser = require('jsdoc/parser');
|
|
|
|
exports['The jsdoc parser should exist.'] = function(t) {
|
|
t.expect(1);
|
|
t.equal( typeof parser, 'object' );
|
|
t.done();
|
|
};
|
|
|
|
exports['The parser should have a parse function.'] = function(t) {
|
|
t.expect(1);
|
|
t.equal( typeof parser.parse, 'function' );
|
|
t.done();
|
|
};
|