Socket
Socket
Sign inDemoInstall

@web/test-runner-core

Package Overview
Dependencies
Maintainers
7
Versions
144
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Comparing version 0.10.2 to 0.10.3

7

CHANGELOG.md
# @web/test-runner-core
## 0.10.3
### Patch Changes
- 8e3b1128: fix regression introduced in filterBrowserLogs function that flipped the return value. returning true now properly includes the logs
- d5a5f2bf: Add undeclared dependencies
## 0.10.2

@@ -4,0 +11,0 @@

2

dist/server/plugins/api/parseBrowserLogs.js

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

for (const log of logsWithType) {
if (!config.filterBrowserLogs || !config.filterBrowserLogs(log)) {
if (!config.filterBrowserLogs || config.filterBrowserLogs(log)) {
logs.push(log.args);

@@ -22,0 +22,0 @@ }

{
"name": "@web/test-runner-core",
"version": "0.10.2",
"version": "0.10.3",
"publishConfig": {

@@ -57,4 +57,6 @@ "access": "public"

"chalk": "^4.1.0",
"chokidar": "^3.4.3",
"cli-cursor": "^3.1.0",
"co-body": "^6.1.0",
"convert-source-map": "^1.7.0",
"debounce": "^1.2.0",

@@ -68,3 +70,5 @@ "dependency-graph": "^0.10.0",

"log-update": "^4.0.0",
"open": "^7.3.0",
"picomatch": "^2.2.2",
"source-map": "^0.7.3",
"uuid": "^8.3.2"

@@ -71,0 +75,0 @@ },

@@ -43,3 +43,3 @@ import { deserialize, MapStackLocation } from '@web/browser-logs';

for (const log of logsWithType) {
if (!config.filterBrowserLogs || !config.filterBrowserLogs(log)) {
if (!config.filterBrowserLogs || config.filterBrowserLogs(log)) {
logs.push(log.args);

@@ -46,0 +46,0 @@ }

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