Delete .eslintignore file and include the ignore patterns in the eslintrc.js file to make it consistent with how we do it in the frontend
Exclude the services/auth directory from test converage reports as I dont think that is something that needs tests.
Surpress console logs for passing tests. This has become an issue, especially since the quantity of tests is increasing. When you run pnpm test then the oputput is as follows:
However, by surpressing logs for passing tests the output will look as follows (maybe it also increases the speed a bit):
However, when a test fails the logs will be displayed. Even better only logs for faild tests will be displayed which makes it easier to locate them:
This PR improves our configuration:
Delete
.eslintignore
file and include the ignore patterns in theeslintrc.js
file to make it consistent with how we do it in the frontendExclude the
services/auth
directory from test converage reports as I dont think that is something that needs tests.Surpress console logs for passing tests. This has become an issue, especially since the quantity of tests is increasing. When you run
pnpm test
then the oputput is as follows:However, by surpressing logs for passing tests the output will look as follows (maybe it also increases the speed a bit):
However, when a test fails the logs will be displayed. Even better only logs for faild tests will be displayed which makes it easier to locate them: