-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsolution.spec.js
38 lines (35 loc) · 1.24 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
import { carryGifts } from './solution';
describe('Challenge 17: Carrying gifts in bags', () => {
describe('carryGifts(...)', () => {
const testCases = [
createTestCase([['game', 'bike', 'book', 'toy'], 10], ['game bike', 'book toy'], 'should return three bags (1)'),
createTestCase(
[['game', 'bike', 'book', 'toy'], 7],
['game', 'bike', 'book toy'],
'should return three bags (2)'
),
createTestCase(
[['game', 'bike', 'book', 'toy'], 4],
['game', 'bike', 'book', 'toy'],
'should return four bags (1)'
),
createTestCase(
[['toy', 'gamme', 'toy', 'bike'], 6],
['toy', 'gamme', 'toy', 'bike'],
'should return four bags (2)'
),
createTestCase([['toy', 'toy', 'toy', 'toy'], 2], [], 'should return four bags (3)'),
createTestCase(
[['toy', 'toy', 'disk', 'disk', 'toy', 'toy'], 7],
['toy toy', 'disk', 'disk toy', 'toy'],
'should return four bags (4)'
)
];
it('#T should return an array', () => {
expect(carryGifts([], 1)).toBeInstanceOf(Array);
});
it.each(testCases)('#$# $description', ({ args, expected }) => {
expect(carryGifts(...args)).toEqual(expected);
});
});
});