diff --git a/testing/cypress/readme.md b/testing/cypress/readme.md new file mode 100644 index 0000000..e1862c7 --- /dev/null +++ b/testing/cypress/readme.md @@ -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)