-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge07.test.js
53 lines (47 loc) · 1.28 KB
/
challenge07.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
const getGiftsToRefill = require('./index.js')
test('Test #1 - Retorna un array', () => {
expect(
Array.isArray(
getGiftsToRefill(['bici', 'coche', 'bici', 'bici'], ['coche', 'bici', 'muñeca', 'coche'], ['bici', 'pc', 'pc'])
)
).toStrictEqual(true)
})
test("Test #2 - getGiftsToRefill(['bici', 'coche', 'bici', 'bici'], ['coche', 'bici', 'muñeca', 'coche'], ['bici', 'pc', 'pc'])", () => {
expect(
getGiftsToRefill(['bici', 'coche', 'bici', 'bici'], ['coche', 'bici', 'muñeca', 'coche'], ['bici', 'pc', 'pc'])
).toStrictEqual([
"muñeca",
"pc"
])
})
test("Test #3 - getGiftsToRefill([], [], [])", () => {
expect(
getGiftsToRefill([], [], [])
).toStrictEqual([])
})
test("Test #4 - getGiftsToRefill(['a', 'a'], ['a', 'a'], ['a', 'a'])", () => {
expect(
getGiftsToRefill(['a', 'a'], ['a', 'a'], ['a', 'a'])
).toStrictEqual([])
})
test("Test #5 - getGiftsToRefill(['a', 'a'], ['b', 'b'], ['c', 'c'])", () => {
expect(
getGiftsToRefill(['a', 'a'], ['b', 'b'], ['c', 'c'])
).toStrictEqual([
"a",
"b",
"c"
])
})
test("Test #6 - getGiftsToRefill(['a', 'b'], ['c', 'd'], ['e', 'f'])", () => {
expect(
getGiftsToRefill(['a', 'b'], ['c', 'd'], ['e', 'f'])
).toStrictEqual([
"a",
"b",
"c",
"d",
"e",
"f"
])
})