I\'m attempting to create an authorization package for a project of mine. I\'m getting the error \'transition superseded\' during my unit tests, and I can\'t find out where
This could be an error with your routing logic. If not that, then try adding this to your app.config();
$qProvider.errorOnUnhandledRejections(false)
I had the same issue after update angular from 1.5.9 to version 1.6.1 and could solved it by update the dependencies with:
npm update angular-ui-router
The old version 0.3.1 leads to the error, with the updated version 0.3.2 my app works fine again (now with angular 1.6.1).
When updating to angular 1.6.1 that's the message, but upgrading the ui-router
to 0.3.2 fix the problem