blob: b4cfef511b5f2e09798b0b59704676b8c87787f2 (
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('rotate (method)', () => {
it('should rotate with the given degree', (done) => {
const image = window.createImage();
const cropper = new Cropper(image, {
ready() {
expect(cropper.rotate(360).getImageData().rotate).to.equal(0);
expect(cropper.rotate(90).getImageData().rotate).to.equal(90);
expect(cropper.rotate(-180).getImageData().rotate).to.equal(-90);
done();
},
});
});
it('should not work when it is not rotatable', (done) => {
const image = window.createImage();
const cropper = new Cropper(image, {
rotatable: false,
ready() {
expect(cropper.rotate(360).getImageData().rotate).to.be.undefined;
expect(cropper.rotate(90).getImageData().rotate).to.be.undefined;
expect(cropper.rotate(-180).getImageData().rotate).to.be.undefined;
done();
},
});
});
});
|