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

test-agent

Package Overview
Dependencies
Maintainers
6
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

test-agent - npm Package Compare versions

Comparing version 0.23.9 to 0.23.10

23

lib/test-agent/browser-worker/mocha-driver.js

@@ -69,18 +69,15 @@ (function(window) {

extend: function extend(target, obj1, objN) {
var result = target || {};
extend: function extend(target) {
var result = target || {},
objs = Array.slice(arguments, 1);
for (var key in obj1) {
if (obj1.hasOwnProperty(key)) {
result[key] = obj1[key];
return objs.reduce(function(result, obj) {
for (var key in obj) {
if (obj.hasOwnProperty(key)) {
result[key] = obj[key];
}
}
}
for (var key in objN) {
if (objN.hasOwnProperty(key)) {
result[key] = objN[key];
}
}
return result;
return result;
}, result);
},

@@ -87,0 +84,0 @@

{
"name": "test-agent",
"version": "0.23.9",
"version": "0.23.10",
"author": "James Lal",

@@ -5,0 +5,0 @@ "description": "execute client side tests from browser report back to cli",

Sorry, the diff of this file is too big to display

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