Repository related with our presentation on "Mes de QA 2024" - Presentation
Make sure you have the following installed before getting started:
- Node.js: Download and install Node.js
- Cypress: Installation and setup guide for Cypress Cypress Docs
npm install
-> Install all dependenciesnpm run test
-> Run all tests in headless mode on the test environmentnpm run test:ui
-> Run all tests using an User Interface on the test environment
npm run test:e2e
-> Run all e2e tests in headless mode on the test environmentnpm run test:api
-> Run all api tests in headless mode on the test environment
npm run test:smoke
-> Run all critical tests in headless mode on the test environmentnpm run test:smoke:e2e
-> Run all critical e2e tests in headless mode on the test environment
- Clone the project ->
git clone https://github.com/manoelcyreno/mesdeqa2024.git
- Go to the root folder of the project ->
cd mesdeqa2024
- Install all dependencies ->
npm install
- Run all tests in headless mode ->
npm run test