mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
Add story child is csf3 test
This commit is contained in:
parent
1fa7cf2e1a
commit
e5a394002e
@ -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';
|
||||
|
Loading…
x
Reference in New Issue
Block a user