■ [JavaScript][Sinon.JS] Sinon.JSのspyについて Sinonのspyに関するドキュメントはここです。 そもそもspyとは A test spy is a function that records arguments, return value, the value of this and exception thrown (if any) for all its calls. A test spy can be an anonymous function or it can wrap an existing function. 意味は、 Test spyは呼ばれた際の全ての引数、戻り値、thisの値、Exceptionを記録する関数である。Test spyは無名関数にもなるし既存関数をwrapすることもできる。 とドキュメントに書かれている。 spyオブ