UNPKG

sugo-constants

Version:
28 lines (18 loc) 422 B
/** * Test case for pipeLevels. * Runs with mocha. */ 'use strict' const pipeLevels = require('../lib/pipe_levels.js') const assert = require('assert') const co = require('co') describe('pipe-levels', function () { this.timeout(3000) before(() => co(function * () { })) after(() => co(function * () { })) it('Pipe levels', () => co(function * () { })) }) /* global describe, before, after, it */