@applitools/socket
Advanced tools
Comparing version 1.0.7 to 1.0.8
@@ -85,3 +85,3 @@ "use strict"; | ||
const { name, key, payload } = deserialize(message); | ||
logger.log(`Received event of type "${JSON.stringify({ name, key })}" with payload`, payload && JSON.stringify(payload, null, 4).slice(0, 5000)); | ||
logger.log(`Received event of type ${JSON.stringify({ name, key })} with payload`, payload && JSON.stringify(payload, null, 4).slice(0, 5000)); | ||
const fns = listeners.get(name); | ||
@@ -111,3 +111,3 @@ if (fns) | ||
const command = () => { | ||
logger.log(`Emit event of type "${JSON.stringify(type)}" with payload`, payload && JSON.stringify(payload, null, 4).slice(0, 5000)); | ||
logger.log(`Emit event of type ${JSON.stringify(type)} with payload`, payload && JSON.stringify(payload, null, 4).slice(0, 5000)); | ||
transport.send(target, serialize(type, payload)); | ||
@@ -114,0 +114,0 @@ }; |
{ | ||
"name": "@applitools/socket", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "Applitools implementation for bidi-communication protocol", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35109