Skip to content

Commit

Permalink
forgot one
Browse files Browse the repository at this point in the history
  • Loading branch information
millotp committed Jan 24, 2025
1 parent 93e78cd commit 4955ee3
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions tests/CTS/requests/search/setSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2786,5 +2786,77 @@
}
}
}
},
{
"testName": "set_rendering_content",
"parameters": {
"indexName": "theIndexName",
"indexSettings": {
"renderingContent": {
"facetOrdering": {
"facets": {
"order": [
"size",
"brand"
]
},
"values": {
"brand": {
"order": [
"uniqlo"
],
"hide": [
"muji"
],
"sortRemainingBy": "count"
},
"size": {
"order": [
"S",
"M",
"L"
],
"sortRemainingBy": "hidden"
}
}
}
}
}
},
"request": {
"path": "/1/indexes/theIndexName/settings",
"method": "PUT",
"body": {
"renderingContent": {
"facetOrdering": {
"facets": {
"order": [
"size",
"brand"
]
},
"values": {
"brand": {
"order": [
"uniqlo"
],
"hide": [
"muji"
],
"sortRemainingBy": "count"
},
"size": {
"order": [
"S",
"M",
"L"
],
"sortRemainingBy": "hidden"
}
}
}
}
}
}
}
]

0 comments on commit 4955ee3

Please sign in to comment.