artes 1.0.44 → 1.0.46

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/index.js CHANGED
@@ -8,6 +8,7 @@ const {
8
8
  selector,
9
9
  page,
10
10
  request,
11
+ random
11
12
  } = require("./src/helper/imports/commons");
12
13
  const {
13
14
  keyboard,
@@ -25,6 +26,7 @@ module.exports = {
25
26
  element,
26
27
  selector,
27
28
  context,
29
+ random,
28
30
  page,
29
31
  request,
30
32
  keyboard,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "artes",
3
- "version": "1.0.44",
3
+ "version": "1.0.46",
4
4
  "description": "The package provide step definitions and user writes feature files, and the package handles automation, with optional POM files and custom step definitions.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -141,7 +141,7 @@ const api = {
141
141
  context.response = response;
142
142
  },
143
143
  vars: () => {
144
- context.vars
144
+ return context.vars
145
145
  },
146
146
  };
147
147