@cuppet/core 1.0.2 → 1.0.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.
package/README.md CHANGED
@@ -22,7 +22,6 @@ yarn install
22
22
  yarn test
23
23
  ```
24
24
 
25
-
26
25
  ## Available Components
27
26
 
28
27
  ### Core Functions
@@ -79,7 +78,7 @@ const apiSteps = require('@cuppet/core/features/app/stepDefinitions/apiSteps');
79
78
  const { Then } = require('@cucumber/cucumber');
80
79
 
81
80
  Then('the response should be an {string}', async function (type) {
82
- console.log("Add your new custom logic", type)
81
+ console.log('Add your new custom logic', type);
83
82
  });
84
83
  ```
85
84
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuppet/core",
3
- "version": "1.0.2",
3
+ "version": "1.0.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": [
@@ -57,7 +57,7 @@
57
57
  },
58
58
  "scripts": {
59
59
  "test": "cucumber-js features/tests",
60
- "postinstall": "sh postinstall.sh",
60
+ "postinstall": "sh ./postinstall.sh",
61
61
  "lint": "eslint .",
62
62
  "format": "prettier --write ."
63
63
  },
@@ -4,7 +4,6 @@
4
4
  * @typedef {import('puppeteer').Browser} Browser
5
5
  */
6
6
  const config = require('config');
7
- const strings = require('../features/app/multilingualStrings/multilingualStrings');
8
7
  module.exports = {
9
8
  /**
10
9
  * Waits for a keypress event to continue the test execution.