UNPKG

429 BJavaScriptView Raw
1/**
2 * Test case for destroyEndpoint.
3 * Runs with mocha.
4 */
5'use strict'
6
7const destroyEndpoint = require('../lib/endpoints/destroy_endpoint.js')
8const assert = require('assert')
9const co = require('co')
10
11describe('destroy-endpoint', () => {
12 before(() => co(function * () {
13
14 }))
15
16 after(() => co(function * () {
17
18 }))
19
20 it('Destroy endpoint', () => co(function * () {
21
22 }))
23})
24
25/* global describe, before, after, it */