blob: 72ac8e28a80adb94bbc8a7bf4f4099726be39061 (
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
|
describe('scaleX (method)', () => {
it('should be scaled in the x-axis', (done) => {
const image = window.createImage();
const cropper = new Cropper(image, {
ready() {
const imageData = cropper.scaleX(-1).getImageData();
expect(imageData.scaleX).to.equal(-1);
done();
},
});
});
it('should not work when it is not scalable', (done) => {
const image = window.createImage();
const cropper = new Cropper(image, {
scalable: false,
ready() {
const imageData = cropper.scaleX(-1).getImageData();
expect(imageData.scaleX).to.be.undefined;
done();
},
});
});
});
|