blob: 7d128358d8435154b81872c59714094317b06344 (
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
|
describe('wheelZoomRatio (option)', () => {
it('should be `0.1` by default', (done) => {
const image = window.createImage();
const cropper = new Cropper(image, {
ready() {
const canvasData = cropper.getCanvasData();
const wheelEvent = window.createEvent('wheel');
wheelEvent.deltaY = -1;
cropper.cropper.dispatchEvent(wheelEvent);
expect(canvasData.width * 1.1).to.equal(cropper.getCanvasData().width);
done();
},
});
expect(cropper.options.wheelZoomRatio).to.equal(0.1);
});
it('should match the given zoom ratio', (done) => {
const image = window.createImage();
const wheelZoomRatio = 0.2;
const cropper = new Cropper(image, {
wheelZoomRatio,
ready() {
const canvasData = cropper.getCanvasData();
const wheelEvent = window.createEvent('wheel');
wheelEvent.deltaY = -1;
cropper.cropper.dispatchEvent(wheelEvent);
expect(canvasData.width * (1 + wheelZoomRatio)).to.equal(cropper.getCanvasData().width);
done();
},
});
expect(cropper.options.wheelZoomRatio).to.equal(wheelZoomRatio);
});
});
|