jest-localstorage-mock
Advanced tools
Comparing version 2.4.21 to 2.4.22
{ | ||
"name": "jest-localstorage-mock", | ||
"version": "2.4.21", | ||
"version": "2.4.22", | ||
"description": "Auto mock all localstorage and sessionstorage APIs for your Jest tests", | ||
@@ -5,0 +5,0 @@ "main": "dist/setup.js", |
@@ -10,3 +10,3 @@ export class LocalStorage { | ||
// not mentioned in the spec, but we must always coerce to a string | ||
value: jest.fn((key, val = '') => { | ||
value: jest.fn((key, val) => { | ||
this[key] = val + ''; | ||
@@ -13,0 +13,0 @@ }), |
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
20625