UNPKG

apeman-doc

Version:
25 lines (19 loc) 356 B
/** * Test case for protoData. * Runs with mocha. */ 'use strict' const protoData = require('../lib/bud/proto_data.js') const assert = require('assert') describe('proto-data', () => { before((done) => { done() }) after((done) => { done() }) it('Proto data', (done) => { done() }) }) /* global describe, before, after, it */