-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix tests #110
Comments
mentioned here |
@blcham When using jest with Vite, it comes with some limitations, another way is to use babel.config.js to avoid limitations |
Vitest: Lightweight, fast, flexible and well documented, but has limited number of features comparing to RTL and lesser community, but it is a part of vite ecosystem. Migration guide is here. I think this should be good for smaller projects and has limited features RTL(react-testing-library): Accessibility Testing (encourages testing from the user's perspective),it is officially supported by React team, integratable with Jest, has extensive docs, and much bigger community. It is more robust(test may be slow), and comes with its learning curve |
I believe thanks to #130 the only requirements solved now are :
|
Since mirgration to Vite, we had to disable tests. We need to enable them again.
See package.json:
"test": "echo !!!tests are disabled!!!",
A/C:
The text was updated successfully, but these errors were encountered: