@qavajs/cypress 2.1.0 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -10,6 +10,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
10
10
  :pencil: - chore
11
11
  :microscope: - experimental
12
12
 
13
+ ## [2.1.1]
14
+ - :beetle: replaced .as to Cypress.log in page object logging
15
+
13
16
  ## [2.1.0]
14
17
  - :rocket: added page object logging
15
18
 
@@ -88,5 +88,6 @@ export function element(path) {
88
88
  }
89
89
  method = 'find';
90
90
  }
91
- return current.as(path)
91
+ Cypress.log({ displayName: path });
92
+ return current
92
93
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qavajs/cypress",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "qavajs for cypress runner",
5
5
  "main": "index.js",
6
6
  "scripts": {