easy-front-build
Version:
This package generate a basic structure of files (html, js && css) by module name
17 lines (15 loc) • 425 B
JavaScript
;
const sinon = require('sinon');
const dymmy = {};
const mock = sinon.mock(object);
// @TODO actions here !
mock.verify();
mock.restore();
const spy = sinon.spy(object, 'functionName');
// @TODO function watcher here !
spy.restore();
const stub = sinon.stub(object, 'functionName').callsFake(() => {
// @TODO the overwrite behavior
});
// @TODO assertions or expects here !!
stub.restore();