mirror of
https://github.com/jsdoc/jsdoc.git
synced 2026-02-01 16:45:41 +00:00
21 lines
557 B
JavaScript
21 lines
557 B
JavaScript
/*global describe: true, expect: true, it: true, xdescribe: true */
|
|
|
|
describe("jsdoc/plugins", function() {
|
|
var plugins = require('jsdoc/plugins');
|
|
|
|
it("should exist", function() {
|
|
expect(plugins).toBeDefined();
|
|
expect(typeof plugins).toEqual('object');
|
|
});
|
|
|
|
it("should export an 'installPlugins' function", function() {
|
|
expect(plugins.installPlugins).toBeDefined();
|
|
expect(typeof plugins.installPlugins).toEqual('function');
|
|
});
|
|
|
|
|
|
xdescribe("installPlugins", function() {
|
|
// TODO
|
|
});
|
|
});
|