Sto cercando di creare una spia su un costruttore e vedere se viene chiamato - di seguito sono i miei test. Sto usando sinon-chai quindi la sintassi è valida, ma entrambi i test falliscono.Spiare un costruttore in javascript con sinone
var foo = function(arg) {
};
var bar = function(arg) {
var baz = new foo(arg);
};
it('foo initialized inside of this test', function() {
var spy = sinon.spy(foo);
new foo('test');
expect(spy).to.be.called;
expect(spy).to.be.calledWith('test');
});
it('foo initialized by bar()', function() {
var spy = sinon.spy(foo);
bar('test');
expect(spy).to.be.called;
expect(spy).to.be.calledWith('test');
});
interrogazione + anwser: https://stackoverflow.com/questions/32338427/spying-on-date-constructor-with-sinon?rq=1 – Gyuri