Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
mocha-sinon
Advanced tools
Integration between mocha and sinon, allowing for automatic cleanup of spies
via npm:
$ npm install --save-dev mocha-sinon
Require it somewhere in your spec helper file (easier, better)
require('mocha-sinon');
or, on your command line calling mocha:
$ mocha -R mocha-sinon test.js
For background, please see issue #1 on this project.
If you use mocha's flakey watch flag, there is experimental support for it. Note that the first method of requiring the mocha-sinon is the best way to do it.
You can put the following block in your spec helper and it might work:
require('mocha-sinon')();
Note that the difference between this method and the first method is that this is calling mocha-sinon's exported function.
Source the mocha-sinon file after you have sourced mocha and sinon, and it will "do the right thing"
Unfortunately, I'm not familiar with requirejs, so mocha-sinon does not yet support requirejs. Pull requests are welcome, though.
var child_process = require('child_process')
, events = require('events')
, chai = require('chai')
, expect = chai.expect
;
chai.use(require('sinon-chai'));
require('mocha-sinon');
describe('a shell command', function(){
beforeEach(function(){
var fakeChild = this.fakeChild = {
stdout: new events.EventEmitter()
};
this.sinon.stub(child_process, 'spawn', function(){
return fakeChild;
});
});
it('gets called', function(done){
someFunction(function(err){
expect(child_process.spawn).to.have.been.calledWith('/usr/bin/env', ['rm', '-rf', '/']);
});
});
});
This module is stupidly simple. You can do it yourself with:
var sinon = require('sinon');
beforeEach(function() {
this.sinon = sinon.sandbox.create();
});
afterEach(function(){
this.sinon.restore();
});
FAQs
mocha integration for sinon
We found that mocha-sinon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.