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