@nx/playwright 22.0.0-canary.20251007-01d5f3f → 22.0.0-canary.20251010-bfaa91b

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.20251007-01d5f3f",
3
+ "version": "22.0.0-canary.20251010-bfaa91b",
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.20251007-01d5f3f",
38
- "@nx/eslint": "22.0.0-canary.20251007-01d5f3f",
39
- "@nx/js": "22.0.0-canary.20251007-01d5f3f",
37
+ "@nx/devkit": "22.0.0-canary.20251010-bfaa91b",
38
+ "@nx/eslint": "22.0.0-canary.20251010-bfaa91b",
39
+ "@nx/js": "22.0.0-canary.20251010-bfaa91b",
40
40
  "tslib": "^2.3.0",
41
41
  "minimatch": "9.0.3"
42
42
  },
43
43
  "devDependencies": {
44
- "nx": "22.0.0-canary.20251007-01d5f3f"
44
+ "nx": "22.0.0-canary.20251010-bfaa91b"
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;;GAoHzB;AAED,eAAe,oBAAoB,CAAC"}
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.error({
46
- title: 'The blob reporter output directory does not exist',
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
- 'Please ensure the directory is configured correctly and it exists.',
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: false };
55
+ return { success: true };
53
56
  }
54
57
  const blobReportFiles = collectBlobReports(absoluteBlobReportDir);
55
58
  const pmc = (0, devkit_1.getPackageManagerCommand)();