@qavajs/cypress-runner-adapter 1.1.0 → 1.2.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 +6 -0
- package/README.md +3 -1
- package/package.json +17 -7
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,12 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
|
|
|
14
14
|
|
|
15
15
|
:microscope: - experimental
|
|
16
16
|
|
|
17
|
+
## [1.2.1]
|
|
18
|
+
- :pencil: updated to cypress 15.3
|
|
19
|
+
|
|
20
|
+
## [1.2.0]
|
|
21
|
+
- :pencil: updated to cypress 15
|
|
22
|
+
|
|
17
23
|
## [1.1.0]
|
|
18
24
|
- :pencil: updated to cypress 14
|
|
19
25
|
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,22 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qavajs/cypress-runner-adapter",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"debug": "cypress open --config-file test/cypress.config.js",
|
|
7
7
|
"test": "cypress run --config-file test/cypress.config.js"
|
|
8
8
|
},
|
|
9
|
-
"author": "Alexandr Galichenko",
|
|
10
9
|
"license": "MIT",
|
|
11
10
|
"description": "feature file preprocessor",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/qavajs/cypress-runner-adapter.git"
|
|
14
|
+
},
|
|
15
|
+
"authors": [
|
|
16
|
+
"Alexandr Galichenko"
|
|
17
|
+
],
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/qavajs/cypress-runner-adapter/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/qavajs/cypress-runner-adaptert#readme",
|
|
12
22
|
"dependencies": {
|
|
13
23
|
"@cucumber/cucumber-expressions": "^18.0.1",
|
|
14
|
-
"@cucumber/gherkin": "^
|
|
15
|
-
"@cucumber/tag-expressions": "^6.
|
|
16
|
-
"@cypress/webpack-preprocessor": "^
|
|
17
|
-
"fs-extra": "^11.3.
|
|
24
|
+
"@cucumber/gherkin": "^35.1.0",
|
|
25
|
+
"@cucumber/tag-expressions": "^6.2.0",
|
|
26
|
+
"@cypress/webpack-preprocessor": "^7.0.1",
|
|
27
|
+
"fs-extra": "^11.3.2"
|
|
18
28
|
},
|
|
19
29
|
"devDependencies": {
|
|
20
|
-
"cypress": "^
|
|
30
|
+
"cypress": "^15.3.0"
|
|
21
31
|
}
|
|
22
32
|
}
|