UNPKG

apeman-app-rest

Version:
26 lines (17 loc) 452 B
/** * Test case for bulkCreateEndpoint. * Runs with mocha. */ 'use strict' const bulkCreateEndpoint = require('../lib/endpoints/bulk/bulk_create_endpoint.js') const assert = require('assert') const co = require('co') describe('bulk-create-endpoint', () => { before(() => co(function * () { })) after(() => co(function * () { })) it('Bulk create endpoint', () => co(function * () { })) }) /* global describe, before, after, it */