Add story child is csf3 test

This commit is contained in:
Kasper Peulen 2023-02-20 11:28:03 +01:00
parent 1fa7cf2e1a
commit e5a394002e

View File

@ -375,6 +375,34 @@ test('story child is jsx', () => {
`);
});
test('story child is CSF3', () => {
const input = dedent`
import { Story } from '@storybook/addon-docs';
import { Button } from './button';
<Story name="Primary" render={(args) => <Button {...args}></Button> } args={{label: 'Hello' }} />
`;
jscodeshift({ source: input, path: 'Foobar.stories.mdx' });
const [, csf] = fs.writeFileSync.mock.calls[0];
expect(csf).toMatchInlineSnapshot(`
import { Button } from './button';
export default {};
export const Primary = {
name: 'Primary',
render: (args) => <Button {...args}></Button>,
args: {
label: 'Hello',
},
};
`);
});
test('story child is arrow function', () => {
const input = dedent`
import { Canvas, Meta, Story } from '@storybook/addon-docs';