-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsolution.spec.js
59 lines (56 loc) · 1.55 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
import { getFilesToBackup } from './solution';
describe('Challenge 13: Backups for Santa Claus files', () => {
describe('getFilesToBackup(...)', () => {
const testCases = [
createTestCase(
[
1546300800,
[
[2, 1546300800],
[3, 1546301100],
[1, 1546300800],
[1, 1546300900],
[1, 1546301000]
]
],
[1, 3],
'should return an array of file ids that were changed after the last backup (1)'
),
createTestCase(
[
1546300600,
[
[1, 1546300800],
[2, 1546300800],
[1, 1546300900],
[1, 1546301000],
[3, 1546301100]
]
],
[1, 2, 3],
'should return an array of file ids that were changed after the last backup (2)'
),
createTestCase(
[
1556300600,
[
[1, 1546300800],
[2, 1546300800],
[1, 1546300900],
[1, 1546301000],
[3, 1546301100]
]
],
[],
'should return an empty array if there are no changes after the last backup'
),
createTestCase([1556300600, []], [], 'should return an empty array if there are no changes')
];
it('#T should return an array', () => {
expect(getFilesToBackup(10000, [])).toBeInstanceOf(Array);
});
it.each(testCases)('#$# $description', ({ args, expected }) => {
expect(getFilesToBackup(...args)).toEqual(expected);
});
});
});