should-sinon

Sinon.js assertions for should.js

Usage no npm install needed!

<script type="module">
  import shouldSinon from 'https://cdn.skypack.dev/should-sinon';
</script>

README

should-sinon

Sinon.js bindings for should.js.

Install

$ npm install should-sinon --save-dev

Example

var sinon = require('sinon');
var should = require('should');
require('should-sinon');

it('should get number of calls', function() {
  var callback = sinon.spy();
  callback();
  callback.should.be.calledOnce();
});