最佳答案
有没有一种方法可以轻松地重置所有的罪恶间谍模拟和存根,将与摩卡的前每块干净的工作。
我看到沙箱是一种选择,但我不知道如何可以使用沙箱这一点
beforeEach ->
sinon.stub some, 'method'
sinon.stub some, 'mother'
afterEach ->
# I want to avoid these lines
some.method.restore()
some.other.restore()
it 'should call a some method and not other', ->
some.method()
assert.called some.method