mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 01:51:04 +08:00
Merge branch 'next' into norbert/viewport-background-addon
This commit is contained in:
commit
353fd6438a
@ -77,7 +77,9 @@ const enhanceContext: LoaderFunction = async (context) => {
|
|||||||
context.canvas = within(context.canvasElement);
|
context.canvas = within(context.canvasElement);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (globalThis.window && globalThis.HTMLElement) {
|
// userEvent.setup() cannot be called in non browser environment and will attempt to access window.navigator.clipboard
|
||||||
|
// which will throw an error in react native for example.
|
||||||
|
if (globalThis.window?.navigator?.clipboard) {
|
||||||
context.userEvent = instrument({ userEvent: userEvent.setup() }, { intercept: true }).userEvent;
|
context.userEvent = instrument({ userEvent: userEvent.setup() }, { intercept: true }).userEvent;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user