Sample project with a Node.js backend and a React frontend, running Cypress tests on GitHub Actions.
Read the following doc to understand all the EngageSphere application's functionalities.
To run this project, you will need:
- git (I've used version
2.42.1
while writing this doc) - Node.js (I've used version
v20.16.0
while writing this doc) - npm (I've used version
10.9.0
while writing this doc)
Note: When installing Node.js, npm is automatically installed too.
Read the following doc to install and start the backend and frontend servers.
After cloning this project, to install the dev dependencies, open a terminal, go to the root of this repo, and run npm install
(or npm i
, for short.)
This project has frontend component tests, GUI tests, and backend API tests.
To run them all, simply run npm test
(or npm t
, for short.)
Run npm run test:frontend:component
to run the frontend component tests.
Run npm run test:frontend:gui
to run the GUI tests.
To use the above script, both the backend and frontend servers should be up and running.
Or, run npm run test:frontend:gui:with:servers
to automatically start the servers, run the tests, and shut them down.
The GUI tests include a small suite of accessibility (a11y) tests.
Run npm run test:api
to run the backend tests.
To use the above script, the backend server should be up and running.
Or, run npm run test:api:with:server
to automatically start the backend server, run the tests, and shut it down.
Read the following doc to get a list of test cases.
Made with ❤️ by Walmyr.