Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/viveksundaresan1312/thecatapi
This repository contains automated end-to-end (E2E) tests using Cypress for the Cat API website.
https://github.com/viveksundaresan1312/thecatapi
cypress cypress-io cypress-tests e2e-tests
Last synced: 4 days ago
JSON representation
This repository contains automated end-to-end (E2E) tests using Cypress for the Cat API website.
- Host: GitHub
- URL: https://github.com/viveksundaresan1312/thecatapi
- Owner: viveksundaresan1312
- Created: 2024-07-04T10:20:13.000Z (6 months ago)
- Default Branch: dev
- Last Pushed: 2024-07-13T11:02:57.000Z (6 months ago)
- Last Synced: 2024-11-08T02:15:34.538Z (about 2 months ago)
- Topics: cypress, cypress-io, cypress-tests, e2e-tests
- Language: JavaScript
- Homepage: https://thecatapi.com/
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TheCatAPI-Tests
This repository contains automated end-to-end (E2E) tests using Cypress for the Cat API website.## Project Setup
1. Clone the repository
2. Switch to the appropriate branch - for example: `dev`### Install dependencies
```sh
npm install
```### Install Cypress Globally
```sh
npm install cypress -g
```### Install Cypress In Project
```sh
npm install cypress --save-dev
```For more details visit this link - [Cypress installation] (https://docs.cypress.io/guides/getting-started/installing-cypress)
### Commands for running the tests
To execute the test in a browser
```sh
npx cypress open
```To execute a test in CLI mode, i.e., in the terminal.
```sh
npx cypress run
```