Does jasmine need sinon.js?
I've seen examples on the web in which people use jasmine together with sinon . However, jasmine has support for spies (which as I understand is what Sinon does). So, the question is, is Sinon still useful when using Jasmine ? If Sinon is useful what exactly makes it a good addition to jasmine ? Cheers No you dont need Sinon to work with Jasmine. But Sinon spy/mock/stubs are more convenient in some cases. There is also a minor bug in mocking setTimeout in Jasmine, which work as expected with sinon. I use Sinon with Jasmine for it's fakeServer capabilities. Sinon allows me to easily mock AJAX