mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:31:19 +08:00
Cleanup
This commit is contained in:
parent
fcc078bce0
commit
7a74e78fc2
@ -115,7 +115,7 @@ function patch(method: string, fn: Function, options: Options) {
|
||||
return patched;
|
||||
}
|
||||
|
||||
const initialize = () => {
|
||||
function initialize() {
|
||||
try {
|
||||
if (!global.window.__STORYBOOK_ADDON_TEST_PREVIEW__) {
|
||||
global.window.__STORYBOOK_ADDON_TEST_PREVIEW__ = {
|
||||
@ -145,6 +145,7 @@ const initialize = () => {
|
||||
iframeState.n = iframeState.callRefsByResult.size;
|
||||
iframeState.next = {};
|
||||
});
|
||||
|
||||
initialized = true;
|
||||
} catch (e) {
|
||||
console.warn(e);
|
||||
|
@ -22,7 +22,7 @@ Demo.play = async ({ args }) => {
|
||||
};
|
||||
|
||||
export const WaitFor = (args) => (
|
||||
<button onClick={() => setTimeout(() => args.onSubmit('clicked'), 200)}>Click</button>
|
||||
<button onClick={() => setTimeout(() => args.onSubmit('clicked'), 100)}>Click</button>
|
||||
);
|
||||
WaitFor.argTypes = {
|
||||
onSubmit: { action: true },
|
||||
|
Loading…
x
Reference in New Issue
Block a user