@argos-ci/playwright 1.5.1 → 1.6.1
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/reporter.mjs +1 -1
- package/package.json +9 -9
package/dist/reporter.mjs
CHANGED
|
@@ -116,7 +116,7 @@ const getParallelFromConfig = (config)=>{
|
|
|
116
116
|
if (config.shard.total === 1) return null;
|
|
117
117
|
const argosConfig = readConfig();
|
|
118
118
|
if (!argosConfig.parallelNonce) {
|
|
119
|
-
throw new Error("Playwright shard mode detected. Please specify ARGOS_PARALLEL_NONCE env variable. Read
|
|
119
|
+
throw new Error("Playwright shard mode detected. Please specify ARGOS_PARALLEL_NONCE env variable. Read /parallel-testing");
|
|
120
120
|
}
|
|
121
121
|
return {
|
|
122
122
|
total: config.shard.total,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@argos-ci/playwright",
|
|
3
3
|
"description": "Visual testing solution to avoid visual regression. Playwright commands and utilities for Argos visual testing.",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.6.1",
|
|
5
5
|
"author": "Smooth Code",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"types": "./dist/index.d.ts",
|
|
27
27
|
"exports": {
|
|
28
28
|
".": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
29
30
|
"import": "./dist/index.mjs",
|
|
30
31
|
"require": "./dist/index.cjs",
|
|
31
|
-
"types": "./dist/index.d.ts",
|
|
32
32
|
"default": "./dist/index.mjs"
|
|
33
33
|
},
|
|
34
34
|
"./reporter": {
|
|
35
|
-
"import": "./dist/reporter.mjs",
|
|
36
35
|
"types": "./dist/reporter.d.ts",
|
|
36
|
+
"import": "./dist/reporter.mjs",
|
|
37
37
|
"default": "./dist/reporter.mjs"
|
|
38
38
|
},
|
|
39
39
|
"./package.json": "./package.json"
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
"node": ">=16.0.0"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@argos-ci/browser": "1.
|
|
46
|
-
"@argos-ci/core": "1.
|
|
47
|
-
"@argos-ci/util": "1.
|
|
45
|
+
"@argos-ci/browser": "1.3.0",
|
|
46
|
+
"@argos-ci/core": "1.4.1",
|
|
47
|
+
"@argos-ci/util": "1.2.0",
|
|
48
48
|
"chalk": "^5.3.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@argos-ci/cli": "1.0.
|
|
51
|
+
"@argos-ci/cli": "1.0.6",
|
|
52
52
|
"@argos-ci/playwright": "workspace:.",
|
|
53
53
|
"@playwright/test": "^1.38.1",
|
|
54
54
|
"@types/node": "^16.0.0"
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"prebuild": "rm -rf dist",
|
|
58
58
|
"build": "rollup -c",
|
|
59
59
|
"test": "pnpm exec playwright test",
|
|
60
|
-
"e2e": "pnpm run test"
|
|
60
|
+
"e2e": "UPLOAD_TO_ARGOS=true pnpm run test"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "b601673bab3248f9a615ded0cca76af78830eeec"
|
|
63
63
|
}
|