UNPKG

apeman-app-rest

Version:
26 lines (17 loc) 467 B
/** * Test case for relationUpdateEndpoint. * Runs with mocha. */ 'use strict' const relationUpdateEndpoint = require('../lib/endpoints/relation_update_endpoint.js') const assert = require('assert') const co = require('co') describe('relation-update-endpoint', () => { before(() => co(function * () { })) after(() => co(function * () { })) it('Relation update endpoint', () => co(function * () { })) }) /* global describe, before, after, it */