forked from Happy-Coding-Clans/vue-easytable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.js
56 lines (50 loc) · 1.17 KB
/
util.js
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
46
47
48
49
50
51
52
53
54
55
56
import Vue from "vue";
export function later(delay = 0) {
return new Promise((resolve) => {
if (typeof delay === "number") {
setTimeout(() => {
resolve();
}, delay);
} else {
Vue.nextTick(() => {
resolve();
});
}
});
}
/*
* @mockScrollTo
* @desc mock scrollTo function
*/
export function mockScrollTo() {
const fn = jest.fn();
Element.prototype.scrollTo = fn;
return fn;
}
/*
* @mockElementMeasurement
* @desc mock element measurement
*/
export function mockElementMeasurement(key, value) {
Object.defineProperty(HTMLElement.prototype, key, {
configurable: true,
value: value,
});
}
/*
* @clearMockElementMeasurement
* @desc clear mock element measurement
*/
export function clearMockElementMeasurement(key) {
// const originalValue = Object.getOwnPropertyDescriptor(
// HTMLElement.prototype,
// key,
// );
const originalValue = {
value: 1200,
writable: false,
enumerable: false,
configurable: true,
};
Object.defineProperty(HTMLElement.prototype, key, originalValue);
}