aboutsummaryrefslogtreecommitdiffstats
path: root/test/directivesSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/directivesSpec.js')
-rw-r--r--test/directivesSpec.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/directivesSpec.js b/test/directivesSpec.js
index df0b5b94..ef4814bf 100644
--- a/test/directivesSpec.js
+++ b/test/directivesSpec.js
@@ -174,6 +174,13 @@ describe("directives", function(){
expect(element.css('color')).toEqual('red');
});
+ it('should silently ignore undefined ng:style', function() {
+ var scope = compile('<div ng:style="myStyle"></div>');
+ scope.$eval();
+ dump(sortedHtml(element));
+ expect(element.hasClass('ng-exception')).toBeFalsy();
+ });
+
it('should ng:show', function(){
var scope = compile('<div ng:hide="hide"></div>');
scope.$eval();