Skip to content

Commit

Permalink
docs(cypress): readme
Browse files Browse the repository at this point in the history
  • Loading branch information
seognil committed Jan 29, 2020
1 parent 614bd2c commit 8116492
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions testing/cypress/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Learn Cypress

## Start From Scratch

```bash
mkdir cy-test
cd cy-test

```

```bash
# by npm
npm init -y
npm i cypress --save-dev
npx cypress open

# or by yarn
yarn init -y
yarn add -D cypress
npx cypress open
```

Check [Opening Cypress](https://docs.cypress.io/guides/getting-started/installing-cypress.html#Opening-Cypress)

0 comments on commit 8116492

Please sign in to comment.