Skip to content

Commit a292306

Browse files
committed
Remove redundant comments
1 parent 8e5aa53 commit a292306

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

spec/cloudinary_spec.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ describe("cloudinary", function () {
8484
it ('should add if (condition) to the result URL', function() {
8585
// Compile a piece of HTML containing the directive
8686
var element = $compile("<div><cl-image public_id='foobar' if='w_gt_200' width='100' crop='scale'/></div>")($rootScope);
87-
// fire all the watches, so the scope expression {{1 + 1}} will be evaluated
8887
$rootScope.$digest();
8988

9089
// Check that the compiled element contains the templated content
@@ -94,7 +93,6 @@ describe("cloudinary", function () {
9493
it ('should add if (condition) to the result URL', function() {
9594
// Compile a piece of HTML containing the directive
9695
var element = $compile("<div><cl-image public_id='foobar'><cl-transformation if='w_gt_200' width='100' crop='scale'/></cl-image></div>")($rootScope);
97-
// fire all the watches, so the scope expression {{1 + 1}} will be evaluated
9896
$rootScope.$digest();
9997

10098
// Check that the compiled element contains the templated content
@@ -110,7 +108,6 @@ describe("cloudinary", function () {
110108
"<cl-transformation height='100' crop='fill'/>"+
111109
"<cl-transformation if='end'/>" +
112110
"</cl-image></div>")($rootScope);
113-
// fire all the watches, so the scope expression {{1 + 1}} will be evaluated
114111
$rootScope.$digest();
115112

116113
// Check that the compiled element contains the templated content
@@ -129,7 +126,6 @@ describe("cloudinary", function () {
129126
"<cl-transformation height='200' crop='fit'/>"+
130127
"<cl-transformation if='end'/>" +
131128
"</cl-image></div>")($rootScope);
132-
// fire all the watches, so the scope expression {{1 + 1}} will be evaluated
133129
$rootScope.$digest();
134130

135131
// Check that the compiled element contains the templated content

0 commit comments

Comments
 (0)