@nx/playwright 22.0.0-canary.20251007-01d5f3f → 22.0.0-canary.20251008-05ab516
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/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/playwright",
|
3
|
-
"version": "22.0.0-canary.
|
3
|
+
"version": "22.0.0-canary.20251008-05ab516",
|
4
4
|
"type": "commonjs",
|
5
5
|
"homepage": "https://nx.dev",
|
6
6
|
"private": false,
|
@@ -34,14 +34,14 @@
|
|
34
34
|
"directory": "packages/playwright"
|
35
35
|
},
|
36
36
|
"dependencies": {
|
37
|
-
"@nx/devkit": "22.0.0-canary.
|
38
|
-
"@nx/eslint": "22.0.0-canary.
|
39
|
-
"@nx/js": "22.0.0-canary.
|
37
|
+
"@nx/devkit": "22.0.0-canary.20251008-05ab516",
|
38
|
+
"@nx/eslint": "22.0.0-canary.20251008-05ab516",
|
39
|
+
"@nx/js": "22.0.0-canary.20251008-05ab516",
|
40
40
|
"tslib": "^2.3.0",
|
41
41
|
"minimatch": "9.0.3"
|
42
42
|
},
|
43
43
|
"devDependencies": {
|
44
|
-
"nx": "22.0.0-canary.
|
44
|
+
"nx": "22.0.0-canary.20251008-05ab516"
|
45
45
|
},
|
46
46
|
"peerDependencies": {
|
47
47
|
"@playwright/test": "^1.36.0"
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"merge-reports.impl.d.ts","sourceRoot":"","sources":["../../../../../../packages/playwright/src/executors/merge-reports/merge-reports.impl.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,eAAe,EACrB,MAAM,YAAY,CAAC;AAOpB,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAEvC,wBAAsB,oBAAoB,CACxC,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,eAAe;;
|
1
|
+
{"version":3,"file":"merge-reports.impl.d.ts","sourceRoot":"","sources":["../../../../../../packages/playwright/src/executors/merge-reports/merge-reports.impl.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,eAAe,EACrB,MAAM,YAAY,CAAC;AAOpB,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAEvC,wBAAsB,oBAAoB,CACxC,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,eAAe;;GAsHzB;AAED,eAAe,oBAAoB,CAAC"}
|
@@ -42,14 +42,17 @@ async function mergeReportsExecutor(options, context) {
|
|
42
42
|
const blobReportDir = blobReporterOutput[1];
|
43
43
|
const absoluteBlobReportDir = (0, node_path_1.join)(projectRoot, blobReportDir);
|
44
44
|
if (!(0, node_fs_1.existsSync)(absoluteBlobReportDir)) {
|
45
|
-
devkit_1.output.
|
46
|
-
title: '
|
45
|
+
devkit_1.output.warn({
|
46
|
+
title: 'Merging the blob reports skipped',
|
47
47
|
bodyLines: [
|
48
48
|
`The blob reporter output directory "${blobReportDir}" does not exist.`,
|
49
|
-
'
|
49
|
+
'This can happen if no Playwright tests were run, or due to a misconfiguration.',
|
50
|
+
'',
|
51
|
+
'For more information see:',
|
52
|
+
'- Merge Atomized Outputs: https://nx.dev/docs/technologies/test-tools/playwright/guides/merge-atomized-outputs',
|
50
53
|
],
|
51
54
|
});
|
52
|
-
return { success:
|
55
|
+
return { success: true };
|
53
56
|
}
|
54
57
|
const blobReportFiles = collectBlobReports(absoluteBlobReportDir);
|
55
58
|
const pmc = (0, devkit_1.getPackageManagerCommand)();
|