forked from dmonad/lib0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharray.test.js
61 lines (55 loc) · 1.37 KB
/
array.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
import * as array from './array.js'
import * as t from './testing.js'
/**
* @param {t.TestCase} _tc
*/
export const testAppend = _tc => {
const arr = [1, 2, 3]
array.appendTo(arr, array.copy(arr))
t.compareArrays(arr, [1, 2, 3, 1, 2, 3])
}
/**
* @param {t.TestCase} _tc
*/
export const testBasic = _tc => {
const arr = array.create()
array.appendTo(arr, array.from([1]))
t.assert(array.last(arr) === 1)
}
/**
* @param {t.TestCase} _tc
*/
export const testflatten = _tc => {
const arr = [[1, 2, 3], [4]]
t.compareArrays(array.flatten(arr), [1, 2, 3, 4])
}
/**
* @param {t.TestCase} _tc
*/
export const testEvery = _tc => {
const arr = [1, 2, 3]
t.assert(array.every(arr, x => x <= 3))
t.assert(!array.every(arr, x => x < 3))
t.assert(array.some(arr, x => x === 2))
t.assert(!array.some(arr, x => x === 42))
}
/**
* @param {t.TestCase} _tc
*/
export const testIsArray = _tc => {
t.assert(array.isArray([]))
t.assert(array.isArray([1]))
t.assert(array.isArray(Array.from(new Set([3]))))
t.assert(!array.isArray(1))
t.assert(!array.isArray(0))
t.assert(!array.isArray(''))
}
/**
* @param {t.TestCase} _tc
*/
export const testUnique = _tc => {
t.compare([1, 2], array.unique([1, 2, 1, 2, 2, 1]))
t.compare([], array.unique([]))
t.compare([{ el: 1 }], array.uniqueBy([{ el: 1 }, { el: 1 }], o => o.el))
t.compare([], array.uniqueBy([], o => o))
}