mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
React: Fix tests by providing originalStoryFn in jsxDecorator.test.tsx
This commit is contained in:
parent
bdc7e1cd8e
commit
3657e72266
@ -314,7 +314,7 @@ describe('jsxDecorator', () => {
|
||||
|
||||
it('should render dynamically for args stories', async () => {
|
||||
const storyFn = (args: any) => <div>args story</div>;
|
||||
const context = makeContext('args', { __isArgsStory: true }, {});
|
||||
const context = makeContext('args', { __isArgsStory: true }, {}, { originalStoryFn: storyFn });
|
||||
jsxDecorator(storyFn, context);
|
||||
await new Promise((r) => setTimeout(r, 0));
|
||||
expect(mockChannel.emit).toHaveBeenCalledWith(SNIPPET_RENDERED, {
|
||||
@ -373,7 +373,10 @@ describe('jsxDecorator', () => {
|
||||
},
|
||||
};
|
||||
|
||||
jsxDecorator(() => mdxElement, makeContext('mdx-args', { __isArgsStory: true }, {}));
|
||||
jsxDecorator(
|
||||
() => mdxElement,
|
||||
makeContext('mdx-args', { __isArgsStory: true }, {}, { originalStoryFn: () => mdxElement })
|
||||
);
|
||||
await new Promise((r) => setTimeout(r, 0));
|
||||
|
||||
expect(mockChannel.emit).toHaveBeenCalledWith(SNIPPET_RENDERED, {
|
||||
@ -396,7 +399,12 @@ describe('jsxDecorator', () => {
|
||||
return <div>resolved args story</div>;
|
||||
});
|
||||
const jsx = '';
|
||||
const context = makeContext('args', { __isArgsStory: true, jsx }, {});
|
||||
const context = makeContext(
|
||||
'args',
|
||||
{ __isArgsStory: true, jsx },
|
||||
{},
|
||||
{ originalStoryFn: storyFn }
|
||||
);
|
||||
expect(() => {
|
||||
jsxDecorator(storyFn, context);
|
||||
}).toThrow(Promise);
|
||||
|
Loading…
x
Reference in New Issue
Block a user