diff options
Diffstat (limited to 'test/ng/directive/ngKeySpec.js')
| -rw-r--r-- | test/ng/directive/ngKeySpec.js | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/ng/directive/ngKeySpec.js b/test/ng/directive/ngKeySpec.js new file mode 100644 index 00000000..d8c6f9de --- /dev/null +++ b/test/ng/directive/ngKeySpec.js @@ -0,0 +1,29 @@ +'use strict'; + +describe('ngKeyup and ngKeydown directives', function() { + var element; + + afterEach(function() { + dealoc(element); + }); + + it('should get called on a keyup', inject(function($rootScope, $compile) { + element = $compile('<input ng-keyup="touched = true">')($rootScope); + $rootScope.$digest(); + expect($rootScope.touched).toBeFalsy(); + + browserTrigger(element, 'keyup'); + expect($rootScope.touched).toEqual(true); + })); + + it('should get called on a keydown', inject(function($rootScope, $compile) { + element = $compile('<input ng-keydown="touched = true">')($rootScope); + $rootScope.$digest(); + expect($rootScope.touched).toBeFalsy(); + + browserTrigger(element, 'keydown'); + expect($rootScope.touched).toEqual(true); + })); + +}); + |
