@qavajs/cypress-runner-adapter 1.0.0 → 1.0.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
@@ -14,6 +14,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
14
14
 
15
15
  :microscope: - experimental
16
16
 
17
+ ## [1.0.1]
18
+ - :pencil: updated dependencies
19
+
17
20
  ## [1.0.0]
18
21
  - :rocket: added `this.executeStep` world method
19
22
 
package/README.md CHANGED
@@ -28,8 +28,9 @@ module.exports = defineConfig({
28
28
  import { When, setWorldConstructor } from '@qavajs/cypress-runner-adapter';
29
29
 
30
30
  class World {
31
-
31
+ parameter = 42;
32
32
  }
33
+
33
34
  setWorldConstructor(World);
34
35
 
35
36
  When('open {string} url', function (url) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qavajs/cypress-runner-adapter",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "debug": "cypress open --config-file test/cypress.config.js",
@@ -17,6 +17,6 @@
17
17
  "fs-extra": "^11.2.0"
18
18
  },
19
19
  "devDependencies": {
20
- "cypress": "^13.16.0"
20
+ "cypress": "^13.17.0"
21
21
  }
22
22
  }
@@ -1,4 +1,4 @@
1
- export default class Data_table {
1
+ export default class DataTable {
2
2
  constructor(sourceTable) {
3
3
  if (sourceTable instanceof Array) {
4
4
  this.rawTable = sourceTable