mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
15 lines
320 B
JavaScript
15 lines
320 B
JavaScript
const config = require('../../lib/config');
|
|
const core = require('../../index');
|
|
|
|
describe('@jsdoc/core', () => {
|
|
it('exists', () => {
|
|
expect(core).toBeObject();
|
|
});
|
|
|
|
describe('config', () => {
|
|
it('is lib/config', () => {
|
|
expect(core.config).toBe(config);
|
|
});
|
|
});
|
|
});
|