mirror of
https://github.com/debug-js/debug.git
synced 2026-01-18 16:12:38 +00:00
13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
const expect = require('chai').expect
|
|
|
|
const debug = require('../../src/index');
|
|
|
|
describe('debug', function () {
|
|
describe('sanity check', function () {
|
|
it('passes', function () {
|
|
const log = debug('test');
|
|
log('hello world');
|
|
});
|
|
});
|
|
})
|