From f3b4b413c6e9da3e4313cb08d1c4bf7ada8e501f Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Fri, 9 Nov 2018 14:20:55 +0100
Subject: [PATCH] chore: website test exclude unpublished options

---
 test/website-docs.spec.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/website-docs.spec.js b/test/website-docs.spec.js
index 53483b2bbf..f484442d4f 100644
--- a/test/website-docs.spec.js
+++ b/test/website-docs.spec.js
@@ -15,6 +15,7 @@ describe('docs', () => {
     .map(match => match.substring(4, match.length - 1));
   const expectedOptions = options
     .filter(option => option.stage !== 'global')
+    .filter(option => option.releaseStatus !== 'unpublished')
     .filter(option => !option.admin)
     .filter(option => !option.parent)
     .map(option => option.name)
-- 
GitLab