Chociaż jest tutaj to samo pytanie, ale nie mogłem znaleźć odpowiedzi na mój problem, oto moje pytanie:
Testuję moją aplikację node js przy użyciu mocha i chai. Używam sinion do zawijania mojej funkcji.
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
});
}
Kiedy próbuję uruchomić ten test, wyświetla mi się błąd
Attempted to wrap getObj which is already wrapped
Próbowałem też umieścić
beforeEach(function () {
sandbox = sinon.sandbox.create();
});
afterEach(function () {
sandbox.restore();
});
w każdym opisie, ale nadal daje mi ten sam błąd.