mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: improve test utils
This commit is contained in:
parent
9b70d1a4dc
commit
871398b223
@ -1,10 +1,4 @@
|
|||||||
import { mount, trigger, triggerDrag } from '../../../test';
|
import { mount, trigger, triggerDrag, mockScrollIntoView } from '../../../test';
|
||||||
|
|
||||||
function mockScrollIntoView() {
|
|
||||||
const fn = jest.fn();
|
|
||||||
Element.prototype.scrollIntoView = fn;
|
|
||||||
return fn;
|
|
||||||
}
|
|
||||||
|
|
||||||
function mockOffsetHeight(offsetHeight) {
|
function mockOffsetHeight(offsetHeight) {
|
||||||
Object.defineProperty(HTMLElement.prototype, 'offsetHeight', {
|
Object.defineProperty(HTMLElement.prototype, 'offsetHeight', {
|
||||||
|
12
test/dom.ts
12
test/dom.ts
@ -30,13 +30,12 @@ function mockHTMLElementOffset() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function mockScrollIntoView() {
|
export function mockScrollIntoView() {
|
||||||
Element.prototype.scrollIntoView = function() {};
|
const fn = jest.fn();
|
||||||
|
Element.prototype.scrollIntoView = fn;
|
||||||
|
return fn;
|
||||||
}
|
}
|
||||||
|
|
||||||
mockScrollIntoView();
|
|
||||||
mockHTMLElementOffset();
|
|
||||||
|
|
||||||
export function mockGetBoundingClientRect(
|
export function mockGetBoundingClientRect(
|
||||||
rect: ClientRect | DOMRect
|
rect: ClientRect | DOMRect
|
||||||
): Function {
|
): Function {
|
||||||
@ -53,3 +52,6 @@ export function mockScrollTop(value: number) {
|
|||||||
Object.defineProperty(window, 'scrollTop', { value, writable: true });
|
Object.defineProperty(window, 'scrollTop', { value, writable: true });
|
||||||
trigger(window, 'scroll');
|
trigger(window, 'scroll');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mockScrollIntoView();
|
||||||
|
mockHTMLElementOffset();
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import { mount, TransitionStub } from '@vue/test-utils';
|
import { mount, TransitionStub } from '@vue/test-utils';
|
||||||
import { trigger, triggerDrag } from './event';
|
|
||||||
import { mockScrollTop, mockGetBoundingClientRect } from './dom';
|
|
||||||
|
|
||||||
// prevent vue warning log
|
// prevent vue warning log
|
||||||
Vue.config.silent = true;
|
Vue.config.silent = true;
|
||||||
@ -16,10 +14,6 @@ export function later(delay: number = 0): Promise<void> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export {
|
export * from './dom';
|
||||||
mount,
|
export * from './event';
|
||||||
trigger,
|
export { mount };
|
||||||
triggerDrag,
|
|
||||||
mockScrollTop,
|
|
||||||
mockGetBoundingClientRect,
|
|
||||||
};
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user