Sinon.JS has a few utilities used internally in lib/sinon.js
. Unless the method in question is documented here, it should not be considered part of the public API, and thus is subject to change.
sinon.restore(object);
Restores all fake methods of supplied object
sinon.stub(obj); // run tests... sinon.restore(obj);
sinon.restore(method);
Restores supplied method
sinon.restore(obj.someMethod);
sinon.createStubInstance(constructor);
Creates a new object with the given function as the protoype and stubs all implemented functions.
The given constructor function is not invoked. See also the stub API.
sinon.format(object);
Formats an object for pretty printing in error messages. Sinon < 1.3.0 defaulted to coercing objects to strings. As of 1.3.0, Sinon uses buster-format by default, or Node’s util module. Feel free to override this method with your own implementation if you prefer different visualization of e.g. objects. The method should return a string.
sinon.log(string);
Logs internal errors, helpful for debugging. By default this property is a noop function, set it to something that prints warnings in your environment for more help, e.g. (if you are using JsTestDriver):
sinon.log = function (message) { jstestdriver.console.log(message); };
© 2010–2017 Christian Johansen
Licensed under the BSD License.
http://sinonjs.org/releases/v1.17.7/utils