@cuppet/core 2.0.2 → 2.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuppet/core",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "Core testing framework components for Cuppet - BDD framework based on Cucumber and Puppeteer",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -31,7 +31,7 @@
31
31
  "dependencies": {
32
32
  "@supercharge/strings": "^2.0.0",
33
33
  "@wdio/globals": "9.17.0",
34
- "appium": "3.0.1",
34
+ "appium": "3.1.2",
35
35
  "appium-uiautomator2-driver": "5.0",
36
36
  "axios": "^1.11.0",
37
37
  "backstopjs": "^6.3.25",
@@ -55,14 +55,14 @@
55
55
  "@html-eslint/parser": "^0.43.0",
56
56
  "@semantic-release/changelog": "^6.0.3",
57
57
  "@semantic-release/git": "^10.0.1",
58
- "@semantic-release/github": "^11.0.3",
59
- "@semantic-release/npm": "^12.0.1",
58
+ "@semantic-release/github": "^12.0.2",
59
+ "@semantic-release/npm": "^13.1.3",
60
60
  "config": "^4.1.0",
61
61
  "eslint": "^9.29.0",
62
62
  "eslint-config-prettier": "^10.1.5",
63
63
  "eslint-plugin-prettier": "^5.5.1",
64
64
  "prettier": "^3.6.1",
65
- "semantic-release": "^24.2.5"
65
+ "semantic-release": "^25.0.2"
66
66
  },
67
67
  "scripts": {
68
68
  "test": "cucumber-js features/tests/example.feature",
@@ -171,8 +171,9 @@ module.exports = {
171
171
  current = current[keys[i]];
172
172
  }
173
173
 
174
+ const castedValue = helper.castPrimitiveType(value);
174
175
  // Set the final value
175
- current[keys[keys.length - 1]] = value;
176
+ current[keys[keys.length - 1]] = castedValue;
176
177
  return this.request;
177
178
  },
178
179