mirror of
https://github.com/debug-js/debug.git
synced 2026-01-25 16:42:28 +00:00
8 lines
201 B
JavaScript
8 lines
201 B
JavaScript
describe('debug', function () {
|
|
describe('sanity check', function () {
|
|
it('passes', function () {
|
|
const log = debug('test');
|
|
expect(log('hello world')).to.not.throw;
|
|
});
|
|
});
|
|
}); |