/home/mip/public_html/template/AdminLTE/plugins/cropper-master/test/options/highlight.js
$(function () {

  'use strict';

  var $image = $(window.createCropperImage());

  $image.cropper({
    highlight: false,

    ready: function () {
      var cropper = $image.data('cropper');

      QUnit.test('options#highlight', function (assert) {
        assert.ok(cropper.$cropper.find('.cropper-face').hasClass('cropper-invisible'));
      });

    }
  });

});