Add Jest to the server application and set up a basic scaffolding for testing our API. We should use Jest as it is set up in the client Vue application as well.
We should also add a command, which runs both the API and client tests to use with CI.
The unit tests in the client are run with yarn test:unit or npm test:unit.
Add Jest to the server application and set up a basic scaffolding for testing our API. We should use Jest as it is set up in the client Vue application as well.
We should also add a command, which runs both the API and client tests to use with CI.
The unit tests in the client are run with
yarn test:unitornpm test:unit.We can also add e2e tests to the client, as