aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/test/options/zoomOnWheel.js
blob: 1a1bf6dceaa7ba6af8fcec21a11bc09d38c5bd0d (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
42
43
44
45
46
47
QUnit.test('options#zoomOnWheel: true', function (assert) {
  var done = assert.async();
  var util = window.Util;
  var image = util.createImage();

  assert.expect(1);

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

    ready: function () {
      var cropper = this.cropper;

      util.dispatchEvent(cropper.cropper, 'wheel');

      done();
    },

    zoom: function () {
      assert.ok(true);
    }
  });
});

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

  assert.expect(0);

  return new Cropper(image, {
    zoomOnWheel: false,

    ready: function () {
      var cropper = this.cropper;

      util.dispatchEvent(cropper.cropper, 'wheel');

      done();
    },

    zoom: function () {
      assert.ok(false);
    }
  });
});