├── .env ├── .github ├── api.png ├── report.png ├── report_part_1.png ├── report_part_2.png ├── template cypress.gif ├── ui.png └── workflows │ ├── allure-api-.yml │ ├── allure-ui.yml │ └── browser_stack.yml ├── .gitignore ├── .prettierrc ├── README.md ├── colletion_postman ├── ServeRest.postman_collection.json └── ServeRest.postman_environment.json ├── cypress.config.js ├── cypress.env.example.json ├── cypress ├── e2e │ ├── api │ │ ├── contracts │ │ │ ├── allUserSchema.js │ │ │ ├── alterUserSchema.js │ │ │ ├── createUserSchema.js │ │ │ ├── loginSchema.js │ │ │ └── searchUserForIdSchema.js │ │ ├── requests │ │ │ ├── alter_user.js │ │ │ ├── create_card.js │ │ │ ├── create_product.js │ │ │ ├── create_user.js │ │ │ ├── delete_product.js │ │ │ ├── list_all_registered_users.js │ │ │ ├── login.js │ │ │ ├── seach_card.js │ │ │ ├── search_product.js │ │ │ └── search_user.js │ │ └── tests │ │ │ ├── alter_email.spec.cy.js │ │ │ ├── register_carts.spec.cy.js │ │ │ ├── remove_product.spec.cy.js │ │ │ ├── seach_all_users.cy.js │ │ │ └── seach_product.spec.cy.js │ └── ui │ │ └── tests │ │ ├── create_product.spec.cy.js │ │ ├── create_user.spec.cy.js │ │ └── login.spec.cy.js ├── fixtures │ ├── authorization.json │ └── user.json └── support │ ├── commands │ ├── commons.js │ └── database-commands.js │ ├── component.js │ └── e2e.js ├── generateConfig.js └── package.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/.env -------------------------------------------------------------------------------- /.github/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/.github/api.png -------------------------------------------------------------------------------- /.github/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/.github/report.png -------------------------------------------------------------------------------- /.github/report_part_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/.github/report_part_1.png -------------------------------------------------------------------------------- /.github/report_part_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/.github/report_part_2.png -------------------------------------------------------------------------------- /.github/template cypress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/.github/template cypress.gif -------------------------------------------------------------------------------- /.github/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/.github/ui.png -------------------------------------------------------------------------------- /.github/workflows/allure-api-.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/.github/workflows/allure-api-.yml -------------------------------------------------------------------------------- /.github/workflows/allure-ui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/.github/workflows/allure-ui.yml -------------------------------------------------------------------------------- /.github/workflows/browser_stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/.github/workflows/browser_stack.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/README.md -------------------------------------------------------------------------------- /colletion_postman/ServeRest.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/colletion_postman/ServeRest.postman_collection.json -------------------------------------------------------------------------------- /colletion_postman/ServeRest.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/colletion_postman/ServeRest.postman_environment.json -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress.env.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress.env.example.json -------------------------------------------------------------------------------- /cypress/e2e/api/contracts/allUserSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/contracts/allUserSchema.js -------------------------------------------------------------------------------- /cypress/e2e/api/contracts/alterUserSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/contracts/alterUserSchema.js -------------------------------------------------------------------------------- /cypress/e2e/api/contracts/createUserSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/contracts/createUserSchema.js -------------------------------------------------------------------------------- /cypress/e2e/api/contracts/loginSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/contracts/loginSchema.js -------------------------------------------------------------------------------- /cypress/e2e/api/contracts/searchUserForIdSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/contracts/searchUserForIdSchema.js -------------------------------------------------------------------------------- /cypress/e2e/api/requests/alter_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/requests/alter_user.js -------------------------------------------------------------------------------- /cypress/e2e/api/requests/create_card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/requests/create_card.js -------------------------------------------------------------------------------- /cypress/e2e/api/requests/create_product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/requests/create_product.js -------------------------------------------------------------------------------- /cypress/e2e/api/requests/create_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/requests/create_user.js -------------------------------------------------------------------------------- /cypress/e2e/api/requests/delete_product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/requests/delete_product.js -------------------------------------------------------------------------------- /cypress/e2e/api/requests/list_all_registered_users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/requests/list_all_registered_users.js -------------------------------------------------------------------------------- /cypress/e2e/api/requests/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/requests/login.js -------------------------------------------------------------------------------- /cypress/e2e/api/requests/seach_card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/requests/seach_card.js -------------------------------------------------------------------------------- /cypress/e2e/api/requests/search_product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/requests/search_product.js -------------------------------------------------------------------------------- /cypress/e2e/api/requests/search_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/requests/search_user.js -------------------------------------------------------------------------------- /cypress/e2e/api/tests/alter_email.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/tests/alter_email.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/api/tests/register_carts.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/tests/register_carts.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/api/tests/remove_product.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/tests/remove_product.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/api/tests/seach_all_users.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/tests/seach_all_users.cy.js -------------------------------------------------------------------------------- /cypress/e2e/api/tests/seach_product.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/api/tests/seach_product.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/ui/tests/create_product.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/ui/tests/create_product.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/ui/tests/create_user.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/ui/tests/create_user.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/ui/tests/login.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/e2e/ui/tests/login.spec.cy.js -------------------------------------------------------------------------------- /cypress/fixtures/authorization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/fixtures/authorization.json -------------------------------------------------------------------------------- /cypress/fixtures/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/fixtures/user.json -------------------------------------------------------------------------------- /cypress/support/commands/commons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/support/commands/commons.js -------------------------------------------------------------------------------- /cypress/support/commands/database-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/support/commands/database-commands.js -------------------------------------------------------------------------------- /cypress/support/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/support/component.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /generateConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/generateConfig.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DougSantos3/template_cypress/HEAD/package.json --------------------------------------------------------------------------------