0
我的應用程序中的以下代碼應該重定向到身份驗證服務。我的所有測試都因爲初始頁面重新加載而失敗。
angular('app', [])
.run(['$window', function($window) {
$window.location = 'auth url' + '&redirect=' + $window.location.href;
};
測試錯誤:Some of your tests did a full page reload!
如何將.RUN塊內部嘲笑$ window.location的,這樣我可以防止頁面重載?