Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.08 KB

README.md

File metadata and controls

56 lines (36 loc) · 1.08 KB

Cypress Testing Template

This repository serves as a base template for testing Cypress integrations with the UI.

Dependencies

Development

This section outlines the steps needed to begin development and testing.

Clone the repository
git clone git@github.com:LF-Engineering/cypress-test-template.git
Navigate to the repository
cd cypress-test-template
Install dependencies
npm install
Start application locally
npm run start

The command above will make the application available on http://localhost:4200

Cypress

In order to run Cypress, you will need to have started your application and it will need to be available on http://localhost:4200.

Start Cypress UI

In a separate terminal, run the either of the following commands.

npm run cypress:open
Run Cypress CLI
npm run cypress:run