虽然这里有一个相同的问题,但是我找不到我的问题的答案,所以这里是我的问题:
我正在使用mocha和chai测试我的node js应用程序。我正在用sinion封装功能。
describe('App Functions', function(){
let mockObj = sinon.stub(testApp, 'getObj', (dbUrl) => {
//some stuff
});
it('get results',function(done) {
testApp.someFun
});
}
describe('App Errors', function(){
let mockObj = sinon.stub(testApp, 'getObj', (dbUrl) => {
//some stuff
});
it('throws errors',function(done) {
testApp.someFun
});
}
当我尝试运行此测试时,它给我错误
Attempted to wrap getObj which is already wrapped
我也尝试过
beforeEach(function () {
sandbox = sinon.sandbox.create();
});
afterEach(function () {
sandbox.restore();
});
在每个描述中,但仍然给我相同的错误。