Comment puis-je utiliser le package Sinon pour stub/mocker un appel de méthode où l'un des paramètres que je dois mocker est appelé à l'aide d'une fonction flèche ? eg
let objWithMethod = { method : function(x) {}; };
function SUT() {
// use case
let x = 'some value';
let y = { anotherMethod : function(func) {}; };
// I want to test that `y.anotherMethod()` is called with
// `(x) => objWithMethod.method(x)` as the argument
y.anotherMethod((x) => objWithMethod.method(x));
}
let mockObj = sinon.mock(objWithMethod);
// Both of these fail with a "never called" error
mockObj.expects('method').once().withArgs(objWithMethod.method.bind(this, x));
mockObj.expects('method').once().withArgs((x) => objWithMethod.method(x));
SUT();
mockObj.verify();
Je n'ai rien trouvé dans la documentation sinon ni après quelques tentatives de recherche sur Google.