Skip to content

imrohitsinghal/cypress-functional-tests

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Help + Testing

The steps below will take you all the way through Cypress.

If you get stuck, here is more help:

1. Install Cypress

Follow these instructions to install Cypress.

2. Fork this repo

If you want to experiment with running this project in Continuous Integration, you'll need to fork it first.

After forking this project in Github, follow these commands to run tests locally:

## clone this repo to a local directory
git clone https://github.com/<your-username>/cypress-functional-tests.git

## cd into the cloned repo
cd cypress-functional-tests

## install the node_modules
npm install

## start the tests
cypress run

3. Run tests locally without npm

If you’re not using Node or npm in your project or you want to try Cypress out quickly, you can always download Cypress directly from our CDN. Follow these instructions to install Cypress.

## Clone the repo locally
git clone https://github.com/<your-username>/cypress-functional-tests.git

##  Launch cypress desktop app

## Open local repo manually or drag-drop it in cypress app
Click "landingpage.js"

4. Add the project to Cypress

Follow these instructions to add the project to Cypress.

5. Run in Continuous Integration

Follow these instructions to run the tests in CI.