mirror of
https://github.com/youzan/vant.git
synced 2025-10-20 18:54:24 +00:00
13 lines
272 B
JavaScript
13 lines
272 B
JavaScript
import Demo from '../demo';
|
|
import demoTest from '../../../test/demo-test';
|
|
|
|
function mockGetBoundingClientRect(vertical) {
|
|
Element.prototype.getBoundingClientRect = jest.fn(() => ({
|
|
width: 100,
|
|
height: 100
|
|
}));
|
|
}
|
|
|
|
mockGetBoundingClientRect();
|
|
demoTest(Demo);
|