UNPKG

apeman-app-rest

Version:
26 lines (17 loc) 397 B
/** * Test case for parseBody. * Runs with mocha. */ 'use strict' const parseBody = require('../lib/parsing/parse_body.js') const assert = require('assert') const co = require('co') describe('parse-body', () => { before(() => co(function * () { })) after(() => co(function * () { })) it('Parse body', () => co(function * () { })) }) /* global describe, before, after, it */