@m00nsolutions/playwright-reporter 1.0.8 → 1.0.9
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/index.mjs +3 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1297,7 +1297,9 @@ class TestCollector {
|
|
|
1297
1297
|
return null;
|
|
1298
1298
|
}
|
|
1299
1299
|
|
|
1300
|
-
|
|
1300
|
+
// Use actual filename from path instead of generic Playwright names (e.g., "screenshot" -> "screenshot.png")
|
|
1301
|
+
// Traces already had this behavior; now all file-based attachments get real filenames
|
|
1302
|
+
name = path.basename(attachment.path);
|
|
1301
1303
|
|
|
1302
1304
|
// Large file: store path for streaming upload (no buffering!)
|
|
1303
1305
|
if (stats.size > LARGE_FILE_THRESHOLD && binaryMode) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m00nsolutions/playwright-reporter",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "Playwright test reporter for M00N Report dashboard - real-time test result streaming with step tracking, attachments, and retry support",
|
|
5
5
|
"main": "index.mjs",
|
|
6
6
|
"type": "module",
|