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
|
describe('checkOrientation (option)', () => {
const imageURL = '/base/docs/images/picture-3.jpg';
it('should check orientation be default', (done) => {
const image = window.createImage({
src: imageURL,
});
const cropper = new Cropper(image, {
ready() {
expect(cropper.getData().rotate).to.not.equal(0);
done();
},
});
expect(cropper.options.checkOrientation).to.be.true;
});
it('should not check orientation', (done) => {
const image = window.createImage({
src: imageURL,
});
const cropper = new Cropper(image, {
checkOrientation: false,
ready() {
expect(cropper.getData().rotate).to.equal(0);
done();
},
});
expect(cropper.options.checkOrientation).to.be.false;
});
it('should not check orientation when it is not rotatable and not scalable', () => {
const image = window.createImage({
src: imageURL,
});
const cropper = new Cropper(image, {
rotatable: false,
scalable: false,
});
expect(cropper.options.checkOrientation).to.be.false;
});
});
|