-
Notifications
You must be signed in to change notification settings - Fork 87
/
reduce-spec.ts
75 lines (62 loc) · 1.5 KB
/
reduce-spec.ts
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
import { reduce } from 'rambda'
describe('reduce', () => {
it('happy', () => {
const result = reduce<number, number>(
(acc, elem) => {
acc // $ExpectType number
elem // $ExpectType number
return acc + elem
},
1,
[ 1, 2, 3 ]
)
result // $ExpectType number
});
it('with two types', () => {
const result = reduce<number, string>(
(acc, elem) => {
acc // $ExpectType string
elem // $ExpectType number
return `${acc}${elem}`
},
'foo',
[ 1, 2, 3 ]
)
result // $ExpectType string
});
it('with index', () => {
const result = reduce<number, number>(
(acc, elem, i) => {
acc // $ExpectType number
elem // $ExpectType number
i // $ExpectType number
return acc + elem
},
1,
[ 1, 2, 3 ]
)
result // $ExpectType number
});
it('fallback', () => {
const result = reduce((acc, val) => {
acc // $ExpectType number
return acc + val
}, 1,[ 1, 2, 3 ])
result // $ExpectType number
});
it('fallback with index', () => {
const result = reduce((acc, val, i) => {
acc // $ExpectType number
i // $ExpectType number
return acc + val
}, 1,[ 1, 2, 3 ])
result // $ExpectType number
});
it('fallback with two types', () => {
const result = reduce((acc, val) => {
acc // $ExpectType string
return acc + val
}, 'foo',[ 1, 2, 3 ])
result // $ExpectType string
});
});