UNPKG

apeman-app-rest

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