Brais Piñeiro
Brais Piñeiro
I can confirm this is related to `happy-dom`. I changed the `vitest` environment to `jsdom`, and all tests passed. In my case, it also happens when running a second test.
It would also be good to have some tutorial about how to test them with `react-testing-library`. I was only able to test the `beginDrag` event: ```typescript expect(component.queryByText('Drag me')).toBeTruthy(); fireEvent.dragStart(component.getByText('Drag me'));...
Ideally, you shouldn't need to mock anything :sweat_smile: @apflieger
Yeah, I'm also using react-testing-library and it works like a charm. No mocking required :slightly_smiling_face: ```typescript import { fireEvent } from '@testing-library/react'; ... function dragAndDrop(src: Element, dst: Element) { fireEvent.dragStart(src);...
Hey @doctorboost, `src` is the element that you want to drag, and `dst` is the element that you want drop it into. For example: ```typescript import { fireEvent, render }...
Is this something you guys would still be interested in having? @ariffjeff @tiboine I left this project a bit abandoned for a while, but I'm now fixing issues and adding...
Really interested in this too @MauriceConrad !
`jest.clearAllMocks()` is also missing 👀 🙏 
Interestingly enough, it works for me in some cases: * Account created via web (not linked to any iphone, ipad...) + regular password :heavy_check_mark: * Account created via web (not...
Any updates on this? I think the "registry on the server" option sounds reasonable. The image size is [quite small](https://hub.docker.com/_/registry/tags) also.