To run frontend tests:
- Move to the frontend directory (
cd frontend) - Install Jest framework (
npm install -D jest @types/jest jest-environment-jsdom @testing-library/react @testing-library/jest-dom ts-jest) - Run
npm testto run both test files
To run backend tests:
- Move to the backend directory (
cd backend) - Run
go test -v ./...to run all backend tests