From 5df698f1c825cf4e8e2b22dff30eeab9d8094f2c Mon Sep 17 00:00:00 2001
From: helena <48861601+helenanull@users.noreply.github.com>
Date: Mon, 15 Mar 2021 22:57:08 +0200
Subject: [PATCH 01/11] Update README.md
---
README.md | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/README.md b/README.md
index bcbeb7f..9f00bdb 100644
--- a/README.md
+++ b/README.md
@@ -20,16 +20,14 @@ cd to `cypress-example` folder and run `npm install`
cypress test runner (cypress __open__):
-`npm run cy:open:web` OR `cypress open --env device=web`
+`npm run cy:open:web` OR `cypress open --env device=web` (change web to mob to switch to mobile view)
-`npm run cy:open:mob` OR `cypress open --env device=mob`
cypress __headless mode__ (cypress run):
`npm run cy:run:web` OR `cypress run --env device=web`
-`npm run cy:run:mob` OR `cypress run --env device=mob`
- If you installed Cypress zip:
From 92f136ec24a84689396d8abc80c5e31978655249 Mon Sep 17 00:00:00 2001
From: helena <48861601+helenanull@users.noreply.github.com>
Date: Mon, 15 Mar 2021 23:06:44 +0200
Subject: [PATCH 02/11] Update README.md
---
README.md | 31 ++++++++++++-------------------
1 file changed, 12 insertions(+), 19 deletions(-)
diff --git a/README.md b/README.md
index 9f00bdb..ae8cd76 100644
--- a/README.md
+++ b/README.md
@@ -8,32 +8,25 @@ Goals:

-# 1. Setup
+# :gear: Setup
+
`git clone https://github.com/helenanull/cypress-example.git`
cd to `cypress-example` folder and run `npm install`
-# 2. Run tests
+# :heavy_check_mark: Run tests
- If you installed Cypress via npm:
-
-cypress test runner (cypress __open__):
-
-`npm run cy:open:web` OR `cypress open --env device=web` (change web to mob to switch to mobile view)
-
-
-
-cypress __headless mode__ (cypress run):
-
-`npm run cy:run:web` OR `cypress run --env device=web`
-
-
+ - cypress test runner (cypress __open__):
+ - **`npm run cy:open:web`** OR `cypress open --env device=web` (change web to mob to switch to mobile view)
+
+ - cypress __headless mode__ (cypress run):
+ - `npm run cy:run:web` OR `cypress run --env device=web`
- If you installed Cypress zip:
+ - import **`cypress-example`** folder and you are good to go
-import **`cypress-example`** folder and you are good to go
-
-# Information
+# :bulb: Information
Tests are located in `cypress/integration` folder
@@ -47,14 +40,14 @@ Selectors are located in `cypress/selectors` folder [only difference from cypres
- __not__ using page objects pattern but keeping selectors (only selectors) separately as they are not easily readable and sometimes we need to share selectors between tests, like header my account button in login test
-# Q&A
+# :grey_question: Q&A
1. Why mobile view is in config and not in test (like cy.viewport())?
- we can't change userAgent in the middle of the test:
https://github.com/cypress-io/cypress/issues/2100
So it seems more correct to launch the tests with the correct config (--env device=mob/web)
-# Links
+# :link: Links
1. https://www.youtube.com/watch?v=5XQOK0v_YRE&ab_channel=OKG%21
2. https://docs.cypress.io/guides/references/best-practices.html
From 571f779c691b27a892d4ec1e943a3c002be8df75 Mon Sep 17 00:00:00 2001
From: helena <48861601+helenanull@users.noreply.github.com>
Date: Mon, 15 Mar 2021 23:09:56 +0200
Subject: [PATCH 03/11] Update README.md
---
README.md | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/README.md b/README.md
index ae8cd76..366e4d6 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
-# Full E2E test suite with Cypress.io (site:http://angularjs.realworld.io/) [WIP]
+# Full E2E test suite with Cypress.io
+## site:http://angularjs.realworld.io/ [WIP]
-Goals:
+## :goal_net: Goals:
- keep it simple - no 'custom' abstractions/functions/utils/helpers (use what Cypress provides)
- tests are easily readable
- project is easily understandable even to people without previous JS or Cypress knowledge
@@ -8,14 +9,14 @@ Goals:

-# :gear: Setup
+## :gear: Setup
`git clone https://github.com/helenanull/cypress-example.git`
cd to `cypress-example` folder and run `npm install`
-# :heavy_check_mark: Run tests
+## :heavy_check_mark: Run tests
- If you installed Cypress via npm:
- cypress test runner (cypress __open__):
@@ -26,7 +27,7 @@ cd to `cypress-example` folder and run `npm install`
- If you installed Cypress zip:
- import **`cypress-example`** folder and you are good to go
-# :bulb: Information
+## :bulb: Information
Tests are located in `cypress/integration` folder
@@ -40,14 +41,14 @@ Selectors are located in `cypress/selectors` folder [only difference from cypres
- __not__ using page objects pattern but keeping selectors (only selectors) separately as they are not easily readable and sometimes we need to share selectors between tests, like header my account button in login test
-# :grey_question: Q&A
+## :grey_question: Q&A
1. Why mobile view is in config and not in test (like cy.viewport())?
- we can't change userAgent in the middle of the test:
https://github.com/cypress-io/cypress/issues/2100
So it seems more correct to launch the tests with the correct config (--env device=mob/web)
-# :link: Links
+## :link: Links
1. https://www.youtube.com/watch?v=5XQOK0v_YRE&ab_channel=OKG%21
2. https://docs.cypress.io/guides/references/best-practices.html
From a37cb149ef8b98d3020c36d0227a2e3d526f993f Mon Sep 17 00:00:00 2001
From: helena <48861601+helenanull@users.noreply.github.com>
Date: Mon, 15 Mar 2021 23:11:09 +0200
Subject: [PATCH 04/11] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 366e4d6..a6ce11c 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
# Full E2E test suite with Cypress.io
-## site:http://angularjs.realworld.io/ [WIP]
+> **site:** http://angularjs.realworld.io/ [WIP]
## :goal_net: Goals:
- keep it simple - no 'custom' abstractions/functions/utils/helpers (use what Cypress provides)
From 3db2bcad7acd4b952691157ac9bf89136f119e02 Mon Sep 17 00:00:00 2001
From: helena <48861601+helenanull@users.noreply.github.com>
Date: Mon, 15 Mar 2021 23:18:41 +0200
Subject: [PATCH 05/11] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index a6ce11c..0d19318 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Full E2E test suite with Cypress.io
+# Full E2E test suite with Cypress
> **site:** http://angularjs.realworld.io/ [WIP]
## :goal_net: Goals:
From cd284dbca87d0d17baa75936c927104e6d56fa49 Mon Sep 17 00:00:00 2001
From: helena <48861601+helenanull@users.noreply.github.com>
Date: Mon, 15 Mar 2021 23:20:04 +0200
Subject: [PATCH 06/11] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 0d19318..86ce224 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Full E2E test suite with Cypress
+# .
Full E2E test suite with Cypress
> **site:** http://angularjs.realworld.io/ [WIP]
## :goal_net: Goals:
From 9b0b7c1c03d4073e708e645b97d9c357d54cd259 Mon Sep 17 00:00:00 2001
From: helena <48861601+helenanull@users.noreply.github.com>
Date: Mon, 15 Mar 2021 23:21:09 +0200
Subject: [PATCH 07/11] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 86ce224..20b93d6 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# .
Full E2E test suite with Cypress
+#  Full E2E test suite with Cypress
> **site:** http://angularjs.realworld.io/ [WIP]
## :goal_net: Goals:
From 703f08648351ebab1ec23d2a2c8a5dc72e8ad36e Mon Sep 17 00:00:00 2001
From: helena <48861601+helenanull@users.noreply.github.com>
Date: Mon, 15 Mar 2021 23:24:48 +0200
Subject: [PATCH 08/11] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 20b93d6..4f7dcc2 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-#  Full E2E test suite with Cypress
+# Full E2E test suite with Cypress
> **site:** http://angularjs.realworld.io/ [WIP]
## :goal_net: Goals:
From f0cd6903ba0b901ffbb109b1e593480d94711c81 Mon Sep 17 00:00:00 2001
From: helena <48861601+helenanull@users.noreply.github.com>
Date: Mon, 15 Mar 2021 23:26:58 +0200
Subject: [PATCH 09/11] Update README.md
---
README.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index 4f7dcc2..e388daf 100644
--- a/README.md
+++ b/README.md
@@ -43,9 +43,9 @@ Selectors are located in `cypress/selectors` folder [only difference from cypres
## :grey_question: Q&A
1. Why mobile view is in config and not in test (like cy.viewport())?
-- we can't change userAgent in the middle of the test:
-https://github.com/cypress-io/cypress/issues/2100
-So it seems more correct to launch the tests with the correct config (--env device=mob/web)
+ - we can't change userAgent in the middle of the test:
+ https://github.com/cypress-io/cypress/issues/2100
+ So it seems more correct to launch the tests with the correct config (--env device=mob/web)
## :link: Links
From a169d9f8bc5a73b3dc98dafeb5d8a1c8c370b137 Mon Sep 17 00:00:00 2001
From: helena <48861601+helenanull@users.noreply.github.com>
Date: Mon, 15 Mar 2021 23:28:48 +0200
Subject: [PATCH 10/11] Update README.md
---
README.md | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index e388daf..ba6a6c9 100644
--- a/README.md
+++ b/README.md
@@ -11,9 +11,8 @@
## :gear: Setup
-`git clone https://github.com/helenanull/cypress-example.git`
-
-cd to `cypress-example` folder and run `npm install`
+1. `git clone https://github.com/helenanull/cypress-example.git`
+2. cd to `cypress-example` folder and run `npm install`
## :heavy_check_mark: Run tests
From 3a5648d0fe818843bdbfa2ca22f510a601760269 Mon Sep 17 00:00:00 2001
From: helena <48861601+helenanull@users.noreply.github.com>
Date: Wed, 17 Mar 2021 21:02:09 +0200
Subject: [PATCH 11/11] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index ba6a6c9..a5608e0 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Full E2E test suite with Cypress
+# **Simple** E2E test suite with Cypress
> **site:** http://angularjs.realworld.io/ [WIP]
## :goal_net: Goals: