Add flag for detecting if the mock is being used

v1.18.x
Peter Jaszkowiak 8 years ago
parent 30b47d39f3
commit cc76a8663d

@ -8,6 +8,7 @@ define('storage', function () {
this._store = {};
this._keys = [];
}
Storage.prototype.isMock = true;
Storage.prototype.setItem = function (key, val) {
key = String(key);
if (this._keys.indexOf(key) === -1) {

Loading…
Cancel
Save