lazy-assert
Advanced tools
Comparing version 0.1.5 to 0.1.6
{ | ||
"name": "lazy-assert", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "An way of doing assertion for lazy people ...", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -298,3 +298,3 @@ var assert = require('assert'); | ||
console.warn('[WARN] peek <' + peekKey + '> did not match the expected value, the actual prepared value is : '); | ||
console.warn('[WARN] ', JSON.stringify(lazyAssert.prepareValue(actualTargetValue, depthOrPlugin), null, 2)); | ||
console.warn(JSON.stringify(lazyAssert.prepareValue(actualTargetValue, depthOrPlugin), null, 2)); | ||
return false; | ||
@@ -311,3 +311,3 @@ } | ||
console.warn('[WARN] peek <' + peekKey + '> did not match the expected value, the actual prepared value is : '); | ||
console.warn('[WARN] ', JSON.stringify(lazyAssert.prepareValue(actualTargetValue, depthOrPlugin), null, 2)); | ||
console.warn(JSON.stringify(lazyAssert.prepareValue(actualTargetValue, depthOrPlugin), null, 2)); | ||
} | ||
@@ -314,0 +314,0 @@ assert.equal(actualString, expectedString, peekKey); |
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
386095