Skip to content
Snippets Groups Projects
Commit f3b4b413 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

chore: website test exclude unpublished options

parent 48278ad2
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,7 @@ describe('docs', () => { ...@@ -15,6 +15,7 @@ describe('docs', () => {
.map(match => match.substring(4, match.length - 1)); .map(match => match.substring(4, match.length - 1));
const expectedOptions = options const expectedOptions = options
.filter(option => option.stage !== 'global') .filter(option => option.stage !== 'global')
.filter(option => option.releaseStatus !== 'unpublished')
.filter(option => !option.admin) .filter(option => !option.admin)
.filter(option => !option.parent) .filter(option => !option.parent)
.map(option => option.name) .map(option => option.name)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment