aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/test/options/highlight.js
blob: a1db4687f5105ac6f53bcc5035c3d99a3f74a167 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
QUnit.test('options#highlight: true', function (assert) {
  var done = assert.async();
  var util = window.Util;
  var image = util.createImage();

  assert.expect(1);

  return new Cropper(image, {
    // highlight: true,

    ready: function () {
      var cropper = this.cropper;
      var face = util.getByClass(cropper.cropBox, 'cropper-face');

      assert.notOk(util.hasClass(face[0], 'cropper-invisible'));

      done();
    }
  });
});

QUnit.test('options#highlight: false', function (assert) {
  var done = assert.async();
  var util = window.Util;
  var image = util.createImage();

  assert.expect(1);

  return new Cropper(image, {
    highlight: false,

    ready: function () {
      var cropper = this.cropper;
      var face = util.getByClass(cropper.cropBox, 'cropper-face');

      assert.ok(util.hasClass(face[0], 'cropper-invisible'));

      done();
    }
  });
});