UNPKG

319 BJavaScriptView Raw
1/**
2 * Test for debugStream.
3 * Runs with mocha.
4 */
5'use strict'
6
7const debugStream = require('../lib/helpers/debugStream')
8const { ok, equal } = require('assert')
9
10describe('debug-stream', () => {
11 before(() => {
12 })
13
14 after(() => {
15 })
16
17 it('Do test', () => {
18
19 })
20})
21
22/* global describe, before, after, it */