Attempt to fix typescript terror

This commit is contained in:
Blaine Bublitz 2020-08-21 10:15:00 -07:00
parent 8faa30bdfc
commit aa8ef1be7f

View File

@ -132,7 +132,7 @@ describe('jsxDecorator', () => {
it('allows the snippet output to be modified by onBeforeRender', () => {
const storyFn = (args: any) => <div>args story</div>;
const onBeforeRender = (dom) => `<p>${dom}</p>`;
const onBeforeRender = (dom: string) => `<p>${dom}</p>`;
const jsx = { onBeforeRender };
const context = makeContext('args', { __isArgsStory: true, jsx }, {});
jsxDecorator(storyFn, context);