blob: 7ab676277794a2eb14ac83de29c7e6a85b5860d3 (
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
|
describe('getContainerData (method)', () => {
it('should get an empty object when it is not ready', () => {
const image = window.createImage();
const cropper = new Cropper(image);
const containerData = cropper.getContainerData();
expect(containerData).to.be.an('object').that.is.empty;
});
it('should get expect container data when ready', (done) => {
const image = window.createImage();
const cropper = new Cropper(image, {
ready() {
const containerData = cropper.getContainerData();
expect(containerData).to.be.an('object').that.has.all.keys(['width', 'height']);
expect(containerData.width).to.be.a('number');
expect(containerData.height).to.be.a('number');
done();
},
});
});
});
|