New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@web/test-runner-chrome

Package Overview
Dependencies
Maintainers
6
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web/test-runner-chrome - npm Package Compare versions

Comparing version 0.5.13 to 0.5.14

6

CHANGELOG.md
# @web/test-runner-chrome
## 0.5.14
### Patch Changes
- 7c25ba4: guard against the logs script being unavailable
## 0.5.13

@@ -4,0 +10,0 @@

6

dist/ChromeLauncherPage.js

@@ -19,3 +19,7 @@ "use strict";

// serialize the log message in the browser to a string
.evaluateHandle(e => window.__wtr_browser_logs__.serialize(e))
// __wtr_browser_logs__ is injected by a script, but in some cases we're setting it isn't available
// for example for browser native warnings
.evaluateHandle(e => window.__wtr_browser_logs__
? window.__wtr_browser_logs__.serialize(e)
: JSON.stringify(e))
// pass along the message from the browser to NodeJS as a string

@@ -22,0 +26,0 @@ .then(handle => handle.jsonValue())

2

package.json
{
"name": "@web/test-runner-chrome",
"version": "0.5.13",
"version": "0.5.14",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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