Fantasy 8Bit system (F8), is a fantasy 8bit console and a set of libraries for creating fantasy 8bit consoles.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

14 lines
293B

  1. // NOTE: Idea for this file comes from https://blog.risingstack.com/node-hero-node-js-unit-testing-tutorial/
  2. const sinon = require('sinon');
  3. const chai = require('chai');
  4. beforeEach(function(){
  5. this.sandbox = sinon.createSandbox();
  6. })
  7. afterEach(function(){
  8. this.sandbox.restore();
  9. });