A small 'live' web site which uses rest-api to represent a pseudo-termial-like interface.
Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
-
- // NOTE: Idea for this file comes from https://blog.risingstack.com/node-hero-node-js-unit-testing-tutorial/
- const sinon = require('sinon');
- const chai = require('chai');
-
- beforeEach(function(){
- this.sandbox = sinon.createSandbox();
- })
-
- afterEach(function(){
- this.sandbox.restore();
- });
|