aboutsummaryrefslogtreecommitdiffstats
path: root/test/ng/directive/ngCloakSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/ng/directive/ngCloakSpec.js')
-rw-r--r--test/ng/directive/ngCloakSpec.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ng/directive/ngCloakSpec.js b/test/ng/directive/ngCloakSpec.js
index f3c28b60..db673375 100644
--- a/test/ng/directive/ngCloakSpec.js
+++ b/test/ng/directive/ngCloakSpec.js
@@ -1,6 +1,6 @@
'use strict';
-describe('ng-cloak', function() {
+describe('ngCloak', function() {
var element;
@@ -17,7 +17,7 @@ describe('ng-cloak', function() {
}));
- it('should remove ng-cloak class from a compiled element with attribute', inject(
+ it('should remove ngCloak class from a compiled element with attribute', inject(
function($rootScope, $compile) {
element = jqLite('<div ng-cloak class="foo ng-cloak bar"></div>');
@@ -33,7 +33,7 @@ describe('ng-cloak', function() {
}));
- it('should remove ng-cloak class from a compiled element', inject(function($rootScope, $compile) {
+ it('should remove ngCloak class from a compiled element', inject(function($rootScope, $compile) {
element = jqLite('<div class="foo ng-cloak bar"></div>');
expect(element.hasClass('foo')).toBe(true);