Mocha tests: How to use regular browser console outputs?

If I test my app with the --full-app option, the browser console behaves differently from the regular console. For instance, objects are printed out in stringified format, instead of a format that allows me to drill-down and inspect them. Especially if you use redux-logger, this is pretty annoying.

It seems as if the mocha integration injects a browser-shim package which overrides the normal log behavior (maybe to intercept log messages?). Is there a way to change this back to the regular console?