A small 'live' web site which uses rest-api to represent a pseudo-termial-like interface.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

19 lines
543B

  1. const expect = require('chai').expect
  2. const logging = require('../app/logging');
  3. var debug = require('debug');
  4. describe('Tests fer app/logging module', function(){
  5. //beforeEach(function(){
  6. //this.debugcb = this.sandbox.spy();
  7. //debug.log = this.debugcb;
  8. //this.debugcb = debugcb;
  9. //this.debug = this.sandbox.stub(require.cache[require.resolve('debug')], 'exports').callsFake(function(){
  10. //return debugcb;
  11. //});
  12. //});
  13. it('Test to see if I subbed my toe', function(){
  14. let log = new logging.Log();
  15. });
  16. });