deno.land / x / rambda@v9.1.1 / source / reduce.spec.js

reduce.spec.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
import { add } from './add.js'import { concat } from './concat.js'import { reduce, reduceStopper } from './reduce.js'
const reducer = ( prev, current, i) => { expect(i).toBeNumber()
return prev + current}const initialValue = 1const list = [ 1, 2, 3 ]const ERROR = 'reduce: list must be array or iterable'
test('happy', () => { expect(reduce( reducer, initialValue, list )).toBe(7)})
test('with object as iterable', () => { expect(() => reduce( reducer, initialValue, { a : 1, b : 2, } )).toThrowWithMessage(TypeError, ERROR)})
test('with undefined as iterable', () => { expect(() => reduce( reducer, 0, {} )).toThrowWithMessage(TypeError, ERROR)})
test('with reduceStopper', () => { let maxIndex const reducer = ( prev, current, i ) => { maxIndex = i
return current === 2 ? reduceStopper(current) : prev } expect(reduce( reducer, initialValue, list )).toBe(2) expect(maxIndex).toBe(1)})
test('returns the accumulator for a null list', () => { expect(reduce( add, 0, null )).toBe(0) expect(reduce( concat, [], null )).toEqual([])})
test('returns the accumulator for an undefined list', () => { expect(reduce( add, 0, undefined )).toBe(0) expect(reduce( concat, [], undefined )).toEqual([])})
rambda

Version Info

Tagged at
2 months ago