mirror of
https://github.com/debug-js/debug.git
synced 2025-12-08 20:59:48 +00:00
13 lines
225 B
JavaScript
13 lines
225 B
JavaScript
import { expect } from 'chai';
|
|
|
|
import debug from '../index';
|
|
|
|
describe('debug', () => {
|
|
describe('sanity check', () => {
|
|
it('passes', () => {
|
|
const log = debug('test');
|
|
log('hello world');
|
|
});
|
|
});
|
|
})
|