轻松清理锡农存根
2022-08-30 02:27:24
有没有办法轻松重置所有sinon间谍的嘲笑和存根,这些模拟和存根将与摩卡的beach块干净利落地配合使用。
我看到沙盒是一个选项,但我不明白如何使用沙盒来实现此目的
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