blob: 9918cba3a0b08f887952db7e9bdc3b8292212b55 (
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
|
describe('scale (method)', () => {
it('should scale with the given values', (done) => {
const image = window.createImage();
const cropper = new Cropper(image, {
ready() {
const imageData = cropper.scale(-1, -1).getImageData();
expect(imageData.scaleX).to.equal(-1);
expect(imageData.scaleY).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.scale(-1, -1).getImageData();
expect(imageData.scaleX).to.be.undefined;
expect(imageData.scaleY).to.be.undefined;
done();
},
});
});
});
|