関数式で sinon スパイを作成することは可能ですか? たとえば、このコードを見てください。
function one() { return 1; }
function two() { return 2; }
function three() { return 3; }
function myMethod() {
var n1 = one();
var n2 = two();
var n3 = three();
return n1 + n2 + n3;
}
QUnit.module('My test');
QUnit.test('testing functions', (assert) => {
assert.expect(3);
const spyOne = sinon.spy(one);
const spyTwo = sinon.spy(two);
const spyThree = sinon.spy(three);
myMethod();
assert.ok(spyOne.called, "called one");
assert.ok(spyTwo.called, "called two");
assert.ok(spyThree.called, "called three");
sinon.restore();
});
私が電話myMethod()
してスパイがいるにもかかわらず、私one - two - three
はまだ偽になります( と についてもone.called
同じです)two
three
ここで何が欠けていますか?
ありがとう!