@suubi7 Am so sorry I can’t tell which keys to be translated but I believe @hadijah315 could be of help. Concerning this
It looks like there might be an issue with the pre-push hook in the project’s Husky configuration. The husky - pre-push hook is a script that runs before a git push is executed. In this case, it’s exiting with code 1, indicating an error.
To troubleshoot this, you might want to check the logs or output from the failed command to get more details about what went wrong. It could be related to a test failure or some other issue specific to the @openmrs/esm-patient-appointments-app module.
The command to run the tests are:
yarn verify to test the entire package
`yarn turbo test – (file name) to test a specific file.
@dkayiwa I have tried various versions of node from v18 to latest but still errors are there. Though the number of successful tests increases to 48 successful.
All tests must pass locally before pushing the code. So i had to run this command yarn turbo test --concurrency 1 which run all the tests successfully and when i pushed the changes the error didnt showup.
The generic yarn turbo test that is in the documentation was crushing thats why i used yarn turbo test --concurrency 1