我在尝试着 访问范围 随附的控制器 **我的自定义角度指令** 什么时候 在茉莉花中测试。
app.directive('MyDirective', function(){
return {
template:...,
scope:...,
controller: function($scope){
$scope.clickMe = function() {
....
};
$scope.message = "";
}
}
我想在茉莉花中编写一个测试来验证是否定义了clickMe方法。
it('should have 3 methods', function() {
expect(dscope).not.toBe(null);
expect(scope).not.toBe(null);
expect(angular.isFunction(dscope.clickMe)).toBe(true);
expect(dscope.message).toBe(true); }
在beforeEach()中,我声明了范围和dscope变量如下:
beforeEach(inject(function( $rootScope, $compile){
scope = $rootScope.$new();
element = angular.element("<div my-directive></div>");
//bind the empty scope into the directive
$compile(element)(scope);
//access to internal directive scope of our element
dscope = element.scope(); }));
但是当我进行测试时,我得到“期望错误是真的。“* 并期望scope.message的undefined不为null