Burada da aynı soru olmasına rağmen sorunuma cevap bulamadım, işte sorum şu:
Mocha ve chai kullanarak node js uygulamamı test ediyorum. İşlevimi tamamlamak için günah kullanıyorum.
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
});
}
Bu testi çalıştırmayı denediğimde bana hata veriyor
Attempted to wrap getObj which is already wrapped
Ben de koymayı denedim
beforeEach(function () {
sandbox = sinon.sandbox.create();
});
afterEach(function () {
sandbox.restore();
});
her birinde anlatıyor, ama yine de bana aynı hatayı veriyor.