fn = sinon.spy() fn() fn.calledOnce == true fn. ... stub = sinon.stub().returns(42) stub() == 42 ... afterEach(function() { global.sinon.restore() })
確定! 回上一頁