Merge branch 'next' into norbert/viewport-background-addon

This commit is contained in:
Norbert de Langen 2025-03-18 10:55:47 +01:00 committed by GitHub
commit 353fd6438a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -77,7 +77,9 @@ const enhanceContext: LoaderFunction = async (context) => {
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;
}
};