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