UNPKG

apeman-doc

Version:
26 lines (19 loc) 347 B
/** * Test case for pkgData. * Runs with mocha. */ 'use strict' const pkgData = require('../lib/bud/pkg_data.js') const assert = require('assert') describe('pkg-data', () => { before((done) => { done() }) after((done) => { done() }) it('Pkg data', (done) => { done() }) }) /* global describe, before, after, it */