-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: ✅ long menu title feature flag
- Loading branch information
1 parent
b67cab7
commit 9b6a42f
Showing
4 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
examples/nuxt-app/test/fixtures/site/primary-nav-nowrap.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"name": "Test site for neutral theme", | ||
"acknowledgementHeader": "Test hero acknowledgement", | ||
"acknowledgementFooter": "Test footer acknowledgement", | ||
"socialImages": { | ||
"twitter": {}, | ||
"og": {} | ||
}, | ||
"siteLogo": { | ||
"href": "/", | ||
"src": "https://placehold.co/140x40", | ||
"altText": "" | ||
}, | ||
"featureFlags": { | ||
"primaryNavNowrap": true | ||
}, | ||
"menus": { | ||
"menuMain": [ | ||
{ | ||
"text": "This link has an excessively long title", | ||
"url": "/demo-landing-page", | ||
"uuid": "29bc9750-a335-455e-9e9a-4166c0bd73df", | ||
"parent": null, | ||
"weight": 0 | ||
}, | ||
{ | ||
"text": "Another random link", | ||
"url": "/demo-landing-page", | ||
"uuid": "04e44b77-20df-4a73-b0d1-cf2d3d614754", | ||
"parent": null, | ||
"weight": 0 | ||
} | ||
], | ||
"menuFooter": [ | ||
{ | ||
"text": "Demo Landing Page", | ||
"url": "/demo-landing-page", | ||
"uuid": "04e44b77-20df-4a73-b0d1-cf2d3d614754", | ||
"parent": null, | ||
"weight": 0 | ||
} | ||
] | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
examples/nuxt-app/test/fixtures/site/primary-nav-wrap.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"name": "Test site for neutral theme", | ||
"acknowledgementHeader": "Test hero acknowledgement", | ||
"acknowledgementFooter": "Test footer acknowledgement", | ||
"socialImages": { | ||
"twitter": {}, | ||
"og": {} | ||
}, | ||
"siteLogo": { | ||
"href": "/", | ||
"src": "https://placehold.co/140x40", | ||
"altText": "" | ||
}, | ||
"menus": { | ||
"menuMain": [ | ||
{ | ||
"text": "This link has an excessively long title", | ||
"url": "/demo-landing-page", | ||
"uuid": "29bc9750-a335-455e-9e9a-4166c0bd73df", | ||
"parent": null, | ||
"weight": 0 | ||
}, | ||
{ | ||
"text": "Another random link", | ||
"url": "/demo-landing-page", | ||
"uuid": "04e44b77-20df-4a73-b0d1-cf2d3d614754", | ||
"parent": null, | ||
"weight": 0 | ||
} | ||
], | ||
"menuFooter": [ | ||
{ | ||
"text": "Demo Landing Page", | ||
"url": "/demo-landing-page", | ||
"uuid": "04e44b77-20df-4a73-b0d1-cf2d3d614754", | ||
"parent": null, | ||
"weight": 0 | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters