sinon-es6

0.0.3 • Public • Published

SinonES6.JS

Sinon.js version compatible with ES6. Everything is like the original version of sinon, plus generators mocking.

var sinon = require('sinon-es6');
 
var objectToMock = {
    generator: function* (a, b) { yield ... }
};
 
sinon.mock(objectToMock).expects('generator').withArgs(2,3).returns(6);

All credits to @cjohansen and Sinon.JS contributors.

Package Sidebar

Install

npm i sinon-es6

Weekly Downloads

152

Version

0.0.3

License

none

Last publish

Collaborators

  • ingame