-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
67 lines (54 loc) · 1.48 KB
/
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
import test from 'ava';
import arrayAdd from './index.js';
test('Return typeerror when input is not an array.', t => {
const error = t.throws(() => arrayAdd(23));
t.is(error.message, 'Expected an array, got number');
});
test('Return 0 when an array is empty.', t => {
t.is(arrayAdd([]), 0);
t.is(arrayAdd(), 0);
});
test('Sum up all the numbers in the array.', t => {
t.is(arrayAdd([1, 2, 3, 4]), 10);
});
test('Sum up only numbers in the array.', t => {
t.is(arrayAdd([1, 'abc', 3, 4, {}, 2, null]), 10);
// Using decimal values
t.is(arrayAdd([10, 1.5]), 11.5);
t.is(arrayAdd([10, '1.5']), 11.5);
// Using -ve values
t.is(arrayAdd([10, -1]), 9);
t.is(arrayAdd([10, '-1']), 9);
// Using -ve decimal values
t.is(arrayAdd([10, -1.1]), 8.9);
t.is(arrayAdd([10, '-1.1']), 8.9);
// Using string with 0 prefix
t.is(arrayAdd(['0', 1, 2]), 3);
t.is(arrayAdd(['01', 1, 2]), 4);
// Using hex values, 0xAB = 171
t.is(arrayAdd(['0xAB', 1]), 172);
t.is(arrayAdd(['0xAB', 1, '0xAC']), 344);
// Using exponential values
t.is(arrayAdd([1e3, 1, 2, 3]), 1006);
t.is(arrayAdd(['1e3', 1, 2, 3]), 1006);
});
test('Sum up integer strings in the array.', t => {
t.is(arrayAdd(['1', '2', '3', '4']), 10);
});
test('Sum up integer strings & numbers mix in the array.', t => {
t.is(arrayAdd(['1', 2, '3', 4]), 10);
});
test('Sum up only finite numbers.', t => {
t.is(
arrayAdd([
1,
2,
3,
4,
Number.POSITIVE_INFINITY,
Number.NaN,
Number.NEGATIVE_INFINITY,
]),
10,
);
});