Fantasy 8Bit system (F8), is a fantasy 8bit console and a set of libraries for creating fantasy 8bit consoles.
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ů.
|
-
- // 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();
- });
|