From 2f7978c87277b1a2e4326897c04efc436b380afb Mon Sep 17 00:00:00 2001 From: Kyle Gach Date: Sun, 5 May 2024 22:22:24 -0600 Subject: [PATCH] Unpublish portable stories jest/vitest for now --- docs/api/portable-stories-jest.md | 2 ++ docs/api/portable-stories-vitest.md | 2 ++ docs/toc.js | 22 ++++++++++++---------- 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/docs/api/portable-stories-jest.md b/docs/api/portable-stories-jest.md index 3abe9798112..cbe7fea550f 100644 --- a/docs/api/portable-stories-jest.md +++ b/docs/api/portable-stories-jest.md @@ -2,6 +2,8 @@ title: 'Portable stories in Jest' --- + + export const SUPPORTED_RENDERERS = ['react', 'vue']; diff --git a/docs/api/portable-stories-vitest.md b/docs/api/portable-stories-vitest.md index 2a934f68736..75b15935fb6 100644 --- a/docs/api/portable-stories-vitest.md +++ b/docs/api/portable-stories-vitest.md @@ -2,6 +2,8 @@ title: 'Portable stories in Vitest' --- + + export const SUPPORTED_RENDERERS = ['react', 'vue', 'svelte']; diff --git a/docs/toc.js b/docs/toc.js index a4d3e85cf6b..3a8c7f59c8e 100644 --- a/docs/toc.js +++ b/docs/toc.js @@ -745,21 +745,23 @@ module.exports = { pathSegment: '', type: 'menu', children: [ - { - pathSegment: 'portable-stories-jest', - title: 'Jest', - type: 'link', - }, + // Unpublished for now + // { + // pathSegment: 'portable-stories-jest', + // title: 'Jest', + // type: 'link', + // }, { pathSegment: 'portable-stories-playwright', title: 'Playwright', type: 'link', }, - { - pathSegment: 'portable-stories-vitest', - title: 'Vitest', - type: 'link', - }, + // Unpublished for now + // { + // pathSegment: 'portable-stories-vitest', + // title: 'Vitest', + // type: 'link', + // }, ], },