debug/test/debug_spec.js

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');
});
});
})