Are you using Sentry? For the first error you may be missing some configuration keys for the Sentry integration.
Raven.js is the official browser JavaScript client for Sentry.
The second one, Cannot read property 'get' of undefined. That’s pointing to the model hook on one of your routes. You can click on the second row at Class.model (route.js:14) and see which route it is. You may be trying to access a property on sometime that could be undefined. You can paste that route file here and we can take a look.
Thanks I was simply not passing in the correct data. Trying to mock a a full-fledged backend that I had no hand in developing and that has little documentation. Which leads to simple errors like that?