@argos-ci/webdriverio 0.5.3 → 0.5.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/dist/index.d.ts +1 -1
- package/package.json +12 -12
package/dist/index.d.ts
CHANGED
|
@@ -30,6 +30,6 @@ type ArgosScreenshotOptions = {
|
|
|
30
30
|
* Specify the color of the overlay box for masked elements, in CSS color format.
|
|
31
31
|
* Default color is pink #FF00FF.
|
|
32
32
|
*/
|
|
33
|
-
declare function argosScreenshot(browser: WebdriverIO.Browser, name: string, { mask, maskColor }?: ArgosScreenshotOptions): Promise<Buffer
|
|
33
|
+
declare function argosScreenshot(browser: WebdriverIO.Browser, name: string, { mask, maskColor }?: ArgosScreenshotOptions): Promise<Buffer<ArrayBuffer>>;
|
|
34
34
|
|
|
35
35
|
export { type ArgosScreenshotOptions, argosScreenshot };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@argos-ci/webdriverio",
|
|
3
3
|
"description": "WebdriverIO SDK for visual testing with Argos.",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.4",
|
|
5
5
|
"author": "Smooth Code",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -46,17 +46,17 @@
|
|
|
46
46
|
"sharp": "^0.33.5"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@argos-ci/cli": "
|
|
50
|
-
"@wdio/cli": "^9.
|
|
51
|
-
"@wdio/globals": "^9.
|
|
52
|
-
"@wdio/local-runner": "^9.
|
|
53
|
-
"@wdio/mocha-framework": "^9.
|
|
54
|
-
"@wdio/spec-reporter": "^9.
|
|
55
|
-
"@wdio/types": "^9.
|
|
56
|
-
"chromedriver": "^
|
|
57
|
-
"tsx": "^4.19.
|
|
49
|
+
"@argos-ci/cli": "workspace:*",
|
|
50
|
+
"@wdio/cli": "^9.5.7",
|
|
51
|
+
"@wdio/globals": "^9.5.7",
|
|
52
|
+
"@wdio/local-runner": "^9.5.7",
|
|
53
|
+
"@wdio/mocha-framework": "^9.5.0",
|
|
54
|
+
"@wdio/spec-reporter": "^9.5.0",
|
|
55
|
+
"@wdio/types": "^9.5.0",
|
|
56
|
+
"chromedriver": "^131.0.5",
|
|
57
|
+
"tsx": "^4.19.2",
|
|
58
58
|
"wdio-chromedriver-service": "^8.1.1",
|
|
59
|
-
"webdriverio": "^9.
|
|
59
|
+
"webdriverio": "^9.5.7"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"build": "tsup && cp ./src/index.cjs ./dist",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"argos-upload": "pnpm exec argos upload screenshots --build-name \"argos-webdriverio-e2e-node-$NODE_VERSION-$OS\"",
|
|
65
65
|
"e2e": "pnpm run test && pnpm run argos-upload"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "0c91306ae0cb8bec5ef93db79565635e405086f7"
|
|
68
68
|
}
|