Valentin Hervieu
Valentin Hervieu
I found this issue thanks to our Sentry integration. If I recall correctly the error was "Chunkload error". When we started wrapping all our dynamic imports with the retry function...
This issue is still relevant.
This issue is still relevant.
@YPCrumble you need to use a generic signature. I have updated my original message with what you are looking for 😉
Same here: 
I'm experiencing the same and it happens when these 2 conditions are met: - the element I'm watching is an `SVGSVGElement` - the element has already been removed from the...
I fixed my above code by adding `document.contains(loader)` to it: ```ts export const waitForLoaderToBeRemoved = async () => { try { const loader = await screen.findByTestId('my-loader'); if(!document.contains(loader)) return await waitForElementToBeRemoved(loader);...
I see, would you like to make a PR to use `@jest/globals` ?
In case it helps someone or the maintainers of this project, we fixed all the typings issues we had with zeus in our fork. Here are 2 PRs that could...
Yes it's available on npm: @elba-security/codegen See the other commits for small changes as there is no change log. Most changes are bug fixes, others are small adaptations to better...