@cuppet/core 1.0.14 → 1.0.16

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
@@ -124,6 +124,10 @@ The following components should be created in your project as they are specific
124
124
  - `commonComponents/` - Common form fields and page paths for your application
125
125
  - `multilingualStrings/` - Multilingual string support for your application
126
126
 
127
+ ## Comprehensive configurations and usage guide
128
+
129
+ For a detailed configuration and step definitions guide, see [GUIDE.MD](./GUIDE.MD).
130
+
127
131
  ## Peer Dependencies
128
132
 
129
133
  This package requires the following peer dependencies:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuppet/core",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "description": "Core testing framework components for Cuppet - BDD framework based on Cucumber and Puppeteer",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -28,6 +28,9 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@supercharge/strings": "^2.0.0",
31
+ "@wdio/globals": "^9.14.0",
32
+ "appium": "^2.18.0",
33
+ "appium-uiautomator2-driver": "^4.2.3",
31
34
  "axios": "^1.8.2",
32
35
  "backstopjs": "^6.3.23",
33
36
  "chai": "^4.3.7",
@@ -36,15 +39,14 @@
36
39
  "moment": "^2.30.1",
37
40
  "pa11y": "^8.0.0",
38
41
  "pa11y-reporter-html": "^2.0.0",
39
- "xml2js": "^0.6.2",
40
- "@wdio/globals": "^9.14.0",
41
- "appium": "^2.18.0",
42
- "appium-uiautomator2-driver": "^4.2.3",
42
+ "puppeteer": "^24.0.1",
43
43
  "webdriverio": "9.12.7",
44
- "puppeteer": "^24.0.1"
44
+ "xml2js": "^0.6.2"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@cucumber/cucumber": "^11.0.0",
48
+ "@html-eslint/eslint-plugin": "^0.43.1",
49
+ "@html-eslint/parser": "^0.43.0",
48
50
  "@semantic-release/changelog": "^6.0.3",
49
51
  "@semantic-release/git": "^10.0.1",
50
52
  "@semantic-release/github": "^11.0.3",
@@ -109,7 +109,7 @@ module.exports = {
109
109
  });
110
110
  return this.response;
111
111
  } catch (error) {
112
- throw new Error(`Request failed with: ${error}`);
112
+ throw new Error(`Request failed with: ${error}. Response: ${JSON.stringify(this.response)}`);
113
113
  }
114
114
  },
115
115