A small 'live' web site which uses rest-api to represent a pseudo-termial-like interface.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- // 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();
- });
|