@cuppet/core 1.1.3 → 1.1.4

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.
@@ -26,7 +26,8 @@ Then('the property {string} should be an {string}', async function (property, ty
26
26
  await apiSteps.propertyIs(property, type);
27
27
  });
28
28
  Then('the response should have property {string} with value {string}', async function (property, value) {
29
- await apiSteps.propertyHasValue(property, value);
29
+ const checkedValue = await dataStorage.checkForVariable(value);
30
+ await apiSteps.propertyHasValue(property, checkedValue);
30
31
  });
31
32
  When('I store {string} to {string} variable', async function (property, variable) {
32
33
  await apiSteps.iRememberVariable(property, variable);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuppet/core",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Core testing framework components for Cuppet - BDD framework based on Cucumber and Puppeteer",
5
5
  "main": "index.js",
6
6
  "files": [