aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/test/methods/enable.js
blob: ebd5b952910a8e797c1dc76b7b5164e46d8485d7 (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
QUnit.test('methods#enable', function (assert) {
  var done = assert.async();
  var util = window.Util;
  var image = util.createImage();

  assert.expect(4);

  return new Cropper(image, {
    ready: function () {
      var cropper = this.cropper;

      cropper.disable();
      assert.ok(cropper.disabled);
      assert.ok(util.hasClass(cropper.cropper, 'cropper-disabled'));

      cropper.enable();
      assert.notOk(cropper.disabled);
      assert.notOk(util.hasClass(cropper.cropper, 'cropper-disabled'));

      done();
    }
  });
});