UNPKG

416 BJavaScriptView Raw
1var testCase = require('./task');
2var pkg = require('../package.json');
3testCase.setUp = function(done){
4 this.destination = 'doc/pack age/' + pkg.name + '/' + pkg.version;
5 this.expectedFiles = [
6 'index.html',
7 'jsdoc-plugin.js.html',
8 'module-tasks_jsdoc-plugin.html',
9 'lib_exec.js.html',
10 'module-exec.html'
11 ];
12 done();
13};
14
15exports.JsDocSpacepackTest = testCase;