解决方法
sinon #spy也接受单个参数myFunc.从
sinon
documentation:
var spy = sinon.spy(myFunc);
Spies on the provided function
所以我们可以像这样使用它:
var xyz = require('./xyz'); sinon.spy(xyz);