Exceptions don't show up (Angular 2)

I am trying to use Sentry with Angular 2. I’ve followed the documentation and raven-js loads and appears to catch exceptions. However, none of the exceptions show up in the sentry dashboard

Here is an exception being thrown and being caught by Raven (I think):

I have double-checked my DSN and it is correct.

Any ideas?

The issue was that I was throwing my test exception from ngAfterViewInit(). I moved my test exception to a button handler and it worked as expected. Not certain what is up with ngAfterViewInit or it could be ui-router, which seems to catch the error first in my case.