Permalink
Browse files

Remove redundant comments

  • Loading branch information...
1 parent 8e5aa53 commit a29230673bcb2912352429d0c2ac61c7581522f7 @ronen-burin ronen-burin committed Mar 31, 2016
Showing with 0 additions and 4 deletions.
  1. +0 −4 spec/cloudinary_spec.js
View
@@ -84,7 +84,6 @@ describe("cloudinary", function () {
it ('should add if (condition) to the result URL', function() {
// Compile a piece of HTML containing the directive
var element = $compile("<div><cl-image public_id='foobar' if='w_gt_200' width='100' crop='scale'/></div>")($rootScope);
- // fire all the watches, so the scope expression {{1 + 1}} will be evaluated
$rootScope.$digest();
// Check that the compiled element contains the templated content
@@ -94,7 +93,6 @@ describe("cloudinary", function () {
it ('should add if (condition) to the result URL', function() {
// Compile a piece of HTML containing the directive
var element = $compile("<div><cl-image public_id='foobar'><cl-transformation if='w_gt_200' width='100' crop='scale'/></cl-image></div>")($rootScope);
- // fire all the watches, so the scope expression {{1 + 1}} will be evaluated
$rootScope.$digest();
// Check that the compiled element contains the templated content
@@ -110,7 +108,6 @@ describe("cloudinary", function () {
"<cl-transformation height='100' crop='fill'/>"+
"<cl-transformation if='end'/>" +
"</cl-image></div>")($rootScope);
- // fire all the watches, so the scope expression {{1 + 1}} will be evaluated
$rootScope.$digest();
// Check that the compiled element contains the templated content
@@ -129,7 +126,6 @@ describe("cloudinary", function () {
"<cl-transformation height='200' crop='fit'/>"+
"<cl-transformation if='end'/>" +
"</cl-image></div>")($rootScope);
- // fire all the watches, so the scope expression {{1 + 1}} will be evaluated
$rootScope.$digest();
// Check that the compiled element contains the templated content

0 comments on commit a292306

Please sign in to comment.