Skip to content

Commit b4a9ca1

Browse files
committed
created fixture for headetags seeding
1 parent c7242a3 commit b4a9ca1

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed

cypress/fixtures/item.json

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
{
2+
"model": {
3+
"label": "Content - Item",
4+
"type": "pageset",
5+
"listed": true
6+
},
7+
"fields": [
8+
{
9+
"label": "Text",
10+
"name": "text",
11+
"datatype": "text",
12+
"sort": 0,
13+
"settings": {
14+
"list": true
15+
}
16+
},
17+
{
18+
"datatype": "textarea",
19+
"name": "textarea",
20+
"label": "textarea",
21+
"sort": 1,
22+
"settings": {
23+
"list": true
24+
}
25+
},
26+
{
27+
"datatype": "markdown",
28+
"name": "markdown",
29+
"label": "markdown",
30+
"sort": 2,
31+
"settings": {
32+
"list": true
33+
}
34+
},
35+
{
36+
"datatype": "wysiwyg_basic",
37+
"name": "wysiwyg_basic",
38+
"label": "wysiwyg basic",
39+
"sort": 3,
40+
"settings": {
41+
"list": true
42+
}
43+
},
44+
{
45+
"label": "Dropdown",
46+
"name": "dropdown",
47+
"datatype": "dropdown",
48+
"sort": 4,
49+
"settings": {
50+
"list": true,
51+
"options": {
52+
"Option 1": "Option 1",
53+
"Option 2": "Option 2"
54+
}
55+
}
56+
},
57+
{
58+
"label": "Yes/No",
59+
"name": "yes_no",
60+
"datatype": "yes_no",
61+
"sort": 5,
62+
"settings": {
63+
"list": true,
64+
"options": {
65+
"0": "No",
66+
"1": "Yes"
67+
}
68+
}
69+
}
70+
],
71+
"items": [
72+
{
73+
"web": {
74+
"metaTitle": "Content Item",
75+
"metaLinkText": "Content Item"
76+
},
77+
"data": {
78+
"text": "text",
79+
"textarea": "textarea",
80+
"markdown": "markdown",
81+
"wysiwyg_basic": "<p>wysiwyg_basic</p>",
82+
"yes_no": "0",
83+
"dropdown": "Option 1"
84+
}
85+
}
86+
]
87+
}

0 commit comments

Comments
 (0)