diff --git a/code/lib/csf-plugin/src/index.ts b/code/lib/csf-plugin/src/index.ts index 2fbf7bd94cd..037f156abf4 100644 --- a/code/lib/csf-plugin/src/index.ts +++ b/code/lib/csf-plugin/src/index.ts @@ -1,11 +1,9 @@ import { createUnplugin } from 'unplugin'; import fs from 'fs/promises'; import { loadCsf, enrichCsf, formatCsf } from '@storybook/csf-tools'; +import type { EnrichCsfOptions } from '@storybook/csf-tools'; -export interface CsfPluginOptions { - source?: boolean; - description?: boolean; -} +export type CsfPluginOptions = EnrichCsfOptions; const STORIES_REGEX = /\.(story|stories)\.[tj]sx?$/; diff --git a/code/lib/csf-tools/src/enrichCsf.test.ts b/code/lib/csf-tools/src/enrichCsf.test.ts index ba1ff84e806..a0bb3af2db2 100644 --- a/code/lib/csf-tools/src/enrichCsf.test.ts +++ b/code/lib/csf-tools/src/enrichCsf.test.ts @@ -4,17 +4,18 @@ import { dedent } from 'ts-dedent'; import { loadCsf, formatCsf } from './CsfFile'; import { enrichCsf, extractSource } from './enrichCsf'; +import type { EnrichCsfOptions } from './enrichCsf'; expect.addSnapshotSerializer({ print: (val: any) => val, test: (val) => true, }); -const enrich = (code: string) => { +const enrich = (code: string, options?: EnrichCsfOptions) => { // we don't actually care about the title const csf = loadCsf(code, { makeTitle: (userTitle) => userTitle || 'default' }).parse(); - enrichCsf(csf); + enrichCsf(csf, options); return formatCsf(csf); }; @@ -294,6 +295,88 @@ describe('enrichCsf', () => { `); }); }); + + describe('options', () => { + it('disableSource', () => { + expect( + enrich( + dedent` + export default { + title: 'Button', + } + /** The most basic button */ + export const Basic = () =>