@qavajs/cypress 2.3.0 → 2.3.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 +3 -0
- package/lib/pageObjects.js +1 -1
- package/package.json +11 -3
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.3.1]
|
|
14
|
+
- :x: removed alias assignment in page object
|
|
15
|
+
|
|
13
16
|
## [2.3.0]
|
|
14
17
|
- :rocket: added `into` preposition to type and type chars steps
|
|
15
18
|
- :x: removed iframe steps
|
package/lib/pageObjects.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qavajs/cypress",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "qavajs for cypress runner",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -16,11 +16,19 @@
|
|
|
16
16
|
"cucumber",
|
|
17
17
|
"cucumberjs"
|
|
18
18
|
],
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/qavajs/cypress.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/qavajs/cypress/issues"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/qavajs/cypress#readme",
|
|
19
27
|
"author": "Alexandr Galichenko",
|
|
20
28
|
"license": "MIT",
|
|
21
29
|
"devDependencies": {
|
|
22
30
|
"@qavajs/cypress-runner-adapter": "^1.3.0",
|
|
23
|
-
"@qavajs/memory": "^1.10.
|
|
24
|
-
"cypress": "^15.
|
|
31
|
+
"@qavajs/memory": "^1.10.3",
|
|
32
|
+
"cypress": "^15.4.0"
|
|
25
33
|
}
|
|
26
34
|
}
|