我正在編寫用angularJS指令編寫的代碼的jasmine單元測試用例。以下是代碼:想要在angularjs代碼中爲addEventListener編寫jasmine單元測試用例
document.getElementById(scope.elementID).addEventListener('focus', function(e) {
$rootScope.isGoogleLocationProgress = true;
// destinationReady = true;
});
document.getElementById(scope.elementID).addEventListener('keydown', function(e) {
$rootScope.isGoogleLocationProgress = true;
// destinationReady = false;
});
document.getElementById(scope.elementID).addEventListener('blur', function(e) {
$document.on('click', checkForClearClick);
function checkForClearClick(e) {
if (e.target) {
if (e.target.name != "clearSearch") {
$timeout(getLocationPrediction, 0);
}
}
}
});
請幫我把它添加
StackOverflow不是爲您編寫代碼,而是關於如何幫助您編寫代碼。試試看,如果你需要的話,請閱讀如何測試茉莉花/角度,如果你對自己寫的東西有問題,請回來。有關如何編寫好問題的更多建議,請參閱: https://stackoverflow.com/help/how-to-ask –