-
Notifications
You must be signed in to change notification settings - Fork 588
/
Copy pathfilter4.test.js
60 lines (55 loc) · 938 Bytes
/
filter4.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
const filterOnPrice = require('../filter/ex4.js');
const products = [
{
name: 'iPhone X',
price: 1159
},
{
name: 'Xiaomi Mi A2',
price: 209
},
{
name: 'Samsung Galaxy Note 9',
price: 992
},
{
name: 'Huawei P20',
price: 480
},
{
name: 'Huawei P20 Pro',
price: 649
}
];
xdescribe('filter - exercice 4', () => {
test('filterOnPrice (price <= 500)', () => {
expect(filterOnPrice(products, 500))
.toEqual([
{
name: 'Xiaomi Mi A2',
price: 209
},
{
name: 'Huawei P20',
price: 480
}
]);
});
test('filterOnPrice (price <= 649)', () => {
expect(filterOnPrice(products, 649))
.toEqual([
{
name: 'Xiaomi Mi A2',
price: 209
},
{
name: 'Huawei P20',
price: 480
},
{
name: 'Huawei P20 Pro',
price: 649
}
]);
});
});