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

adjust.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
import { add } from './add.js'import { adjust } from './adjust.js'import { pipe } from './pipe.js'
const list = [ 0, 1, 2 ]const expected = [ 0, 11, 2 ]
test('happy', () => {})
test('happy', () => { expect(adjust( 1, add(10), list )).toEqual(expected)})
test('with curring type 1 1 1', () => { expect(adjust(1)(add(10))(list)).toEqual(expected)})
test('with curring type 1 2', () => { expect(adjust(1)(add(10), list)).toEqual(expected)})
test('with curring type 2 1', () => { expect(adjust(1, add(10))(list)).toEqual(expected)})
test('with negative index', () => { expect(adjust( -2, add(10), list )).toEqual(expected)})
test('when index is out of bounds', () => { const list = [ 0, 1, 2, 3 ] expect(adjust( 4, add(1), list )).toEqual(list) expect(adjust( -5, add(1), list )).toEqual(list)})
rambda

Version Info

Tagged at
2 months ago