【发布时间】:2015-10-01 05:02:33
【问题描述】:
我是 jasmine 单元测试的新手,所以我希望这是有道理的并且足够正确以获得答案,我正在尝试测试 angularJS 指令
这是我的小伙伴:http://jsfiddle.net/ksqhmkqm/13
在我的情况下,我无法获取 jasmine 中的输入 (id="Montid") 值
这是我的角度代码
app.directive("monthNext", function () {
console.log('massif');
return {
restrict: 'A',
link: function (scope, element) {
element.on('input', function () {
var todaysYear = new Date();
var u = todaysYear.getFullYear() - 2;
if (element.val().length == 4) {
var nextElement = element.next().next().next().next().next().next().next();
nextElement = angular.element(document.querySelectorAll('#Montid'));
if (element.val() <= u) {
console.log(element.children());
//var nextElement = angular.element(document.body).find('[tab index = 6]')
console.log(nextElement);
//nextElement.focus();
console.log(nextElement);
nextElement.val("");
nextElement[0].focus();
} else {
// alert(nextElement.val());
console.log(nextElement.val("01"));
}
}
});
}
};
});
这是我的茉莉花代码
describe('CommonBusInfo', function () {
var element, scope, timeout;
beforeEach(function () {
module('CommonBusInfo');
inject(function ($rootScope, $compile) {
scope = $rootScope.$new();
element = angular.element('<form><input id="Montid" ng-model="test" value="09" type="text"/><input id="yearId" " type="text" value="2015" month-next/></form>');
$compile(element)(scope);
scope.$digest();
});
});
it('should set Month value to 1', function () {
var x = element.find('input');
x.triggerHandler('input');
scope.$digest();
});
});
我想读取 Montid 值进行比较
谢谢你, 柴坦尼亚
【问题讨论】:
标签: angularjs unit-testing jasmine directive