Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

playwright

Package Overview
Dependencies
Maintainers
4
Versions
4665
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

playwright - npm Package Compare versions

Comparing version 1.49.0-beta-1731562490000 to 1.49.0-beta-1731582214000

13

lib/reporters/merge.js

@@ -389,3 +389,3 @@ "use strict";

const testResult = jsonEvent.params.result;
testResult.errors.forEach(error => this._updateLocation(error.location));
testResult.errors.forEach(error => this._updateErrorLocations(error));
testResult.attachments.forEach(attachment => {

@@ -401,2 +401,7 @@ if (attachment.path) attachment.path = this._updatePath(attachment.path);

}
if (jsonEvent.method === 'onStepEnd') {
const step = jsonEvent.params.step;
this._updateErrorLocations(step.error);
return;
}
}

@@ -416,2 +421,8 @@ _updateProject(project) {

}
_updateErrorLocations(error) {
while (error) {
this._updateLocation(error.location);
error = error.cause;
}
}
_updateLocation(location) {

@@ -418,0 +429,0 @@ if (location) location.file = this._updatePath(location.file);

4

package.json
{
"name": "playwright",
"version": "1.49.0-beta-1731562490000",
"version": "1.49.0-beta-1731582214000",
"description": "A high-level API to automate web browsers",

@@ -59,3 +59,3 @@ "repository": {

"dependencies": {
"playwright-core": "1.49.0-beta-1731562490000"
"playwright-core": "1.49.0-beta-1731582214000"
},

@@ -62,0 +62,0 @@ "optionalDependencies": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc