Frameworks for testing in monorepos, what are y'all using?
Delicious frameworks please, integration tests, unit test, deployment tests, etc
3 Replies
What do you want to test? If everything but the kitchen sink you can go with vitest, rtl, msw and playwright
you will have to use several tool to test your app.
There are 3 kind of tests that I use :
unit tests : I will be able to test if my functions work properly (jest)
integration tests : I will test My components, services and modules and and other stuff related to the database (jest)
system tests : create an similar environnement to production and I write tests that simulate real-world user interactions (selenium, playwright ... and more)
have fun
For frontend accessibility testing I can also recommend https://pa11y.org/
Pa11y
Pa11y is your automated accessibility testing pal.