为了熟悉指令测试,我创建了如下所示的简单示例。不幸的是,测试失败了,似乎从未调用过链接函数。该指令在应用程序中使用时确实有效。
我已经尝试硬编码message
属性,删除链接函数中的条件,甚至从 $watch 中提取 attr 集,但测试仍然失败。
还有其他类似的帖子,原因是缺少 $digest 调用,但我确实有,我尝试将它移到it
规范块中。
如果我console.log(elem[0].otherHTML)
打电话,范围绑定似乎工作
<wd-alert type="notice" message="O'Doole Rulz" class="ng-scope"></wd-alert>
我错过了什么?
alert.spec.js
"use strict";
describe('Alert Specs', function () {
var scope, elem;
beforeEach(module('myapp'));
beforeEach(inject(function ($compile, $rootScope) {
scope = $rootScope;
scope.msg = "O'Doole Rulz";
elem = angular.element('<wd-alert type="notice" message="{{msg}}"></wd-alert>');
$compile(elem)(scope);
scope.$digest();
}));
it('shows the message', function () {
expect(elem.text()).toContain("O'Doole Rulz");
});
});
警报.js
angular.module('myapp').directive('wdAlert', function() {
return {
restrict: 'EA',
replace: true,
template: '<div></div>',
link: function(scope, element, attrs) {
attrs.$observe('message', function() {
if (attrs.message) {
element.text(attrs.message);
element.addClass(attrs.type);
}
})
}
}
});