So the default pretty printer for jQuery values in jasmine isn't very pretty (it prints it as an object, listing every method available). It'd be much nicer if it just printed it as an array.
I could override jasmine.PrettyPrinter.prototype.format
to give specific instructions in the case of value instanceof jQuery
or override jasmine.isArray_
to return true for jQuery objects, but both of these seem like hacks.
Is there a more natural way of extending the jasmine pretty printer?