debug/test/client/debug_spec.js

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