-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathdebounce.test.js
98 lines (86 loc) · 2.24 KB
/
debounce.test.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import debounce from './debounce';
import sleep from './../../shared/sleep';
describe('debounce', () => {
it('when front debounce: immediate call', async () => {
let count = 0;
const addCount = () => {
count += 1;
};
// set immediate param is true
const timer = setInterval(debounce(addCount, 500, true), 200);
setTimeout(() => {
clearInterval(timer);
}, 1000);
await sleep(300);
// count will be 1
expect(count).toBe(1);
});
it('when back debounce, is not immediate call', async () => {
let count = 0;
const addCount = () => {
count += 1;
};
const timer = setInterval(debounce(addCount, 500), 200);
setTimeout(() => {
clearInterval(timer);
}, 1000);
await sleep(300);
expect(count).toBe(0);
});
it('front debounce: when less than interval, could just call only once', async () => {
let count = 0;
const addCount = () => {
count += 1;
};
const timer = setInterval(debounce(addCount, 500, true), 200);
setTimeout(() => {
clearInterval(timer);
}, 1000);
await sleep(1500);
expect(count).toBe(1);
});
it('front debounce: when greate than interval, call more than once', async () => {
let count = 0;
const addCount = () => {
count += 1;
};
const timer = setInterval(debounce(addCount, 200, true), 400);
/**
* 400 -> 1
* 800 -> 2
*/
setTimeout(() => {
clearInterval(timer);
}, 1000);
await sleep(1500);
expect(count).toBe(2);
});
it('back debounce: when less than interval, could just call only once', async () => {
let count = 0;
const addCount = () => {
count += 1;
};
const timer = setInterval(debounce(addCount, 500), 200);
setTimeout(() => {
clearInterval(timer);
}, 1000);
await sleep(1500);
expect(count).toBe(1);
});
it('back debounce: when greate than interval, call more than once', async () => {
let count = 0;
const addCount = () => {
count += 1;
};
const timer = setInterval(debounce(addCount, 200), 400);
/**
* 400 -> 1
* 800 -> 2
*/
setTimeout(() => {
clearInterval(timer);
}, 1000);
await sleep(1500);
expect(count).toBe(2);
});
});