forked from PrestaShop/ui-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatures.ts
42 lines (41 loc) · 842 Bytes
/
features.ts
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
import FakerFeature from '@data/faker/feature';
import FakerFeatureValue from '@data/faker/featureValue';
export default {
composition: new FakerFeature({
id: 1,
position: 1,
name: 'Composition',
values: [
new FakerFeatureValue({
id: 1,
value: 'Polyester',
}),
new FakerFeatureValue({
id: 2,
value: 'Wool',
}),
new FakerFeatureValue({
id: 3,
value: 'Ceramic',
}),
new FakerFeatureValue({
id: 4,
value: 'Cotton',
}),
new FakerFeatureValue({
id: 5,
value: 'Recycled cardboard',
}),
new FakerFeatureValue({
id: 6,
value: 'Matt paper',
}),
],
}),
property: new FakerFeature({
id: 2,
position: 2,
name: 'Property',
values: [],
}),
};