admin管理员组文章数量:1351978
I have been learning Sinon JS for unit testing, and I am trying to get this example code working. I have a simple "external" library created:
class MyLib {
simpleMethod () {
return 'some response';
}
static handler() {
const myLib = new MyLib();
myLib.simpleMethod();
}
}
module.exports = MyLib;
Then, I have a simple test suite:
const chai = require('chai');
const sinon = require('sinon');
const MyLib = require('./my-lib');
describe ('sinon example tests', () => {
it ('should call simpleMethod once', () => {
let stubInstance = sinon.stub(MyLib, 'simpleMethod');
MyLib.handler();
sinon.assert.calledOnce(stubInstance);
});
});
But I am returned with the error "AssertError: expected stub to be called once but was called 0 times". I know this is probably obvious, but why is simpleMethod
not being called?
I have been learning Sinon JS for unit testing, and I am trying to get this example code working. I have a simple "external" library created:
class MyLib {
simpleMethod () {
return 'some response';
}
static handler() {
const myLib = new MyLib();
myLib.simpleMethod();
}
}
module.exports = MyLib;
Then, I have a simple test suite:
const chai = require('chai');
const sinon = require('sinon');
const MyLib = require('./my-lib');
describe ('sinon example tests', () => {
it ('should call simpleMethod once', () => {
let stubInstance = sinon.stub(MyLib, 'simpleMethod');
MyLib.handler();
sinon.assert.calledOnce(stubInstance);
});
});
But I am returned with the error "AssertError: expected stub to be called once but was called 0 times". I know this is probably obvious, but why is simpleMethod
not being called?
1 Answer
Reset to default 7simpleMethod is an instance method. To stub an instance method, you should stub the prototype.
Try this in your code.
myStub = sinon.stub(MyLib.prototype, 'simpleMethod');
Remember to restore the stub at the end of the test.
myStub.restore();
本文标签: javascriptSinon js AssertError expected stub to be called once but was called 0 timesStack Overflow
版权声明:本文标题:javascript - Sinon js AssertError: expected stub to be called once but was called 0 times - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743907952a2559849.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论