A small 'live' web site which uses rest-api to represent a pseudo-termial-like interface.
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
-
- // 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();
- });
|