I've got a throw "TEST"; line in my Angular code in a controller and it successfully notifies Bugsnag the first time that page is seen, but not after that. I wasn't sure if Angular was doing any tricky caching so I did this and still see the same behavior:
$scope.test = function () { throw "TEST" }();
Any thoughts on what's causing this behavior? And whether this is in this code or Bugsnag's?