Philipp Fritsche
Philipp Fritsche
Sadly we don't have the capacity to debug issues with third-party libraries. If you can break this down to a minimal reproduction, I'll gladly reopen.
Thanks for the report. The default behavior is indeed determined by the event target. This is especially true for events that trigger secondary events as default behavior (e.g. `click` for...
We have to [manipulate elements](https://github.com/testing-library/user-event/blob/main/src/document/prepareDocument.ts) to simulate the UI layer of the browser. But we don't introduce a `_constructor-name_` property anywhere. Could you provide a full reproduction example without third-party...
Sadly we don't have the capacity to debug issues with third-party libraries. I hope you could resolve your issue with @jd-carroll 's hint. If the issue persists and you can...
Shouldn't this be an issue with `allure-jasmine` ? In test runners that provide a fresh context for every suite it doesn't matter if we restore the original Clipboard. But if...
This is an issue with `@testing-library/react`. See https://github.com/testing-library/react-testing-library/issues/1197 Trick [this piece of code](https://github.com/testing-library/react-testing-library/blob/f78839bf4147a777a823e33a429bcf5de9562f9e/src/pure.js#L15-L23) into recognizing your environment as Jest. ```jsx globalThis.jest = 'neitherUndefinedNorNull' ```
https://codesandbox.io/p/sandbox/s2nptl
I'm not sure… * Direct APIs will be deprecated and removed at some point. * Preparing the document is necessary and giving users the option to call this (and cleanup...
Thanks for contributing to this library. `HTMLInputElement.value` and `HTMLTextAreaElement.value` are always `string` in browsers. If `happy-dom` returns `null`, I'd consider this a bug in their DOM implementation. Is this still...
resolved by #1176