mirror of
https://github.com/debug-js/debug.git
synced 2026-01-18 16:12:38 +00:00
9 lines
243 B
JavaScript
9 lines
243 B
JavaScript
/* globals describe, it, expect, debug*/
|
|
describe('debug', function () {
|
|
describe('sanity check', function () {
|
|
it('passes', function () {
|
|
const log = debug('test');
|
|
expect(log('hello world')).to.not.throw;
|
|
});
|
|
});
|
|
}); |