debuggable-service.spec.js 365 B

1234567891011
  1. import {expect} from './chai.js';
  2. import {DebuggableService} from './debuggable-service.js';
  3. describe('DebuggableService', function () {
  4. describe('constructor', function () {
  5. it('sets the debugger to the "debug" property', function () {
  6. const service = new DebuggableService();
  7. expect(service.debug).to.be.instanceof(Function);
  8. });
  9. });
  10. });