playwright 1.54.0-alpha-2025-06-26 → 1.54.0-alpha-2025-06-28
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.
Potentially problematic release.
This version of playwright might be problematic. Click here for more details.
- package/lib/reporters/merge.js +1 -1
- package/package.json +2 -2
package/lib/reporters/merge.js
CHANGED
|
@@ -383,7 +383,7 @@ class AttachmentPathPatcher {
|
|
|
383
383
|
if (event.method === "onAttach")
|
|
384
384
|
this._patchAttachments(event.params.attachments);
|
|
385
385
|
else if (event.method === "onTestEnd")
|
|
386
|
-
this._patchAttachments(event.params.attachments ?? []);
|
|
386
|
+
this._patchAttachments(event.params.result.attachments ?? []);
|
|
387
387
|
}
|
|
388
388
|
_patchAttachments(attachments) {
|
|
389
389
|
for (const attachment of attachments) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "playwright",
|
|
3
|
-
"version": "1.54.0-alpha-2025-06-
|
|
3
|
+
"version": "1.54.0-alpha-2025-06-28",
|
|
4
4
|
"description": "A high-level API to automate web browsers",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
},
|
|
57
57
|
"license": "Apache-2.0",
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"playwright-core": "1.54.0-alpha-2025-06-
|
|
59
|
+
"playwright-core": "1.54.0-alpha-2025-06-28"
|
|
60
60
|
},
|
|
61
61
|
"optionalDependencies": {
|
|
62
62
|
"fsevents": "2.3.2"
|