-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsolution.spec.js
70 lines (67 loc) · 1.99 KB
/
solution.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 { selectSleigh, selectSleighAlt } from './solution';
describe('Challenge 12: Electric sleighs, wow!', () => {
describe('selectSleigh(...)', () => {
const testCases = [
createTestCase(
[
1,
[
{ name: 'pheralb', consumption: 0.3 },
{ name: 'TMChein', consumption: 0.5 }
]
],
'TMChein',
'should return the name of the sleigh with the lowest consumption (1)'
),
createTestCase(
[
10,
[
{ name: 'Pedrosillano', consumption: 1 },
{ name: 'SamarJaffal', consumption: 5 }
]
],
'Pedrosillano',
'should return the name of the sleigh with the lowest consumption (2)'
),
createTestCase(
[
10,
[
{ name: 'Pedrosillano', consumption: 1 },
{ name: 'SamarJaffal', consumption: 2 },
{ name: 'marcospage', consumption: 3 }
]
],
'SamarJaffal',
'should return the name of the sleigh with the lowest consumption (3)'
),
createTestCase(
[
50,
[
{ name: 'Pedrosillano', consumption: 1 },
{ name: 'SamarJaffal', consumption: 2 },
{ name: 'marcospage', consumption: 3 }
]
],
null,
'should return null if no sleigh can be used'
)
];
it('#T should return a string', () => {
const distance = 10;
const sleighs = [
{ name: 'Pedrosillano', consumption: 1 },
{ name: 'SamarJaffal', consumption: 2 },
{ name: 'marcospage', consumption: 3 }
];
expect(typeof selectSleigh(distance, sleighs)).toBe('string');
expect(typeof selectSleighAlt(distance, sleighs)).toBe('string');
});
it.each(testCases)('#$# $description', ({ args, expected }) => {
expect(selectSleigh(...args)).toEqual(expected);
expect(selectSleighAlt(...args)).toEqual(expected);
});
});
});