AngularJS 单元测试组件(1.5+)
示例
组件代码:
angular.module('myModule', []).component('myComponent', {
bindings: {
myValue: '<'
},
controller: function(MyService) {
this.service= MyService;
this.componentMethod= function() {
return 2;
};
}
});考试:
describe('myComponent', function() {
var component;
var MyServiceFake = jasmine.createSpyObj(['serviceMethod']);
beforeEach(function() {
module('myModule');
inject(function($componentController) {
//第一-组件名称,第二-控制器注入,第三-绑定
component = $componentController('myComponent', {
MyService: MyServiceFake
}, {
myValue: 3
});
});
});
/** Here you test the injector. Useless. */
it('injects the binding', function() {
expect(component.myValue).toBe(3);
});
it('has some cool behavior', function() {
expect(component.componentMethod()).toBe(2);
});
});跑!
热门推荐
10 结婚婚宴圆满祝福语简短
11 庆祝结婚蛋糕祝福语简短
12 校长转岗祝福语大全简短
13 结婚祝福语嫂子的话简短
14 新婚祝福语简短老同学
15 祝福语简短大全微信
16 室友生宝宝祝福语简短
17 员工年中贺卡祝福语简短
18 广东考试祝福语朋友简短