0.0.3 • Published 10 years ago

sinon-es6 v0.0.3

Weekly downloads
365
License
-
Repository
-
Last release
10 years ago

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.