grunt-jsdoc
Version:
Integrates jsdoc3 generation into your Grunt build
15 lines (13 loc) • 339 B
JavaScript
var testCase = require('./task');
testCase.setUp = function(done){
this.destination = 'doc/basic';
this.expectedFiles = [
'index.html',
'jsdoc-plugin.js.html',
'module-tasks_jsdoc-plugin.html',
'lib_exec.js.html',
'module-exec.html'
];
done();
};
exports.JsDocBasicTest = testCase;