@qavajs/cypress-runner-adapter 1.0.1 → 1.2.0

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
@@ -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.0]
18
+ - :pencil: updated to cypress 15
19
+
20
+ ## [1.1.0]
21
+ - :pencil: updated to cypress 14
22
+
17
23
  ## [1.0.1]
18
24
  - :pencil: updated dependencies
19
25
 
package/README.md CHANGED
@@ -3,7 +3,9 @@ Adapter to run cucumberjs tests via cypress test runner
3
3
 
4
4
  ## Installation
5
5
 
6
- `npm install @qavajs/cypress-runner-adapter`
6
+ ```
7
+ npm install @qavajs/cypress-runner-adapter
8
+ ```
7
9
 
8
10
  ## Basic Configuration
9
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qavajs/cypress-runner-adapter",
3
- "version": "1.0.1",
3
+ "version": "1.2.0",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "debug": "cypress open --config-file test/cypress.config.js",
@@ -11,12 +11,12 @@
11
11
  "description": "feature file preprocessor",
12
12
  "dependencies": {
13
13
  "@cucumber/cucumber-expressions": "^18.0.1",
14
- "@cucumber/gherkin": "^30.0.4",
15
- "@cucumber/tag-expressions": "^6.1.1",
16
- "@cypress/webpack-preprocessor": "^6.0.2",
17
- "fs-extra": "^11.2.0"
14
+ "@cucumber/gherkin": "^34.0.0",
15
+ "@cucumber/tag-expressions": "^6.2.0",
16
+ "@cypress/webpack-preprocessor": "^7.0.1",
17
+ "fs-extra": "^11.3.1"
18
18
  },
19
19
  "devDependencies": {
20
- "cypress": "^13.17.0"
20
+ "cypress": "^15.1.0"
21
21
  }
22
22
  }