mock-property
Version:
Given an object and a property, replaces a property descriptor (or deletes it), and returns a thunk to restore it.
68 lines (52 loc) • 2.32 kB
Markdown
[![github actions][actions-image]][actions-url]
[![coverage][codecov-image]][codecov-url]
[![dependency status][deps-svg]][deps-url]
[![dev dependency status][dev-deps-svg]][dev-deps-url]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]
[![npm badge][npm-badge-png]][package-url]
Given an object and a property, replaces a property descriptor (or deletes it), and returns a thunk to restore it.
## Example
```js
var mockProperty = require('mock-property');
var assert = require('assert');
var i = 0;
var object = {
a: 1,
get b() {
i += 1;
return 'b ' + i;
}
};
assert.equal(object.a, 1);
assert.equal(object.b, 'b 1');
assert.equal(object.b, 'b 2');
var restoreA = mockProperty(object, 'a', { 'delete': true });
assert.equal('a' in object, false);
var restoreB = mockProperty(object, 'b', { value: 42 });
assert.equal(object.b, 42);
restoreA();
assert.equal('a' in object, true);
restoreB();
assert.equal(object.b, 'b 3');
```
Simply clone the repo, `npm install`, and run `npm test`
Please email [@ljharb](https://github.com/ljharb) or see https://tidelift.com/security if you have a potential security vulnerability to report.
[]: https://npmjs.org/package/mock-property
[]: https://versionbadg.es/ljharb/mock-property.svg
[]: https://david-dm.org/ljharb/mock-property.svg
[]: https://david-dm.org/ljharb/mock-property
[]: https://david-dm.org/ljharb/mock-property/dev-status.svg
[]: https://david-dm.org/ljharb/mock-property#info=devDependencies
[]: https://nodei.co/npm/mock-property.png?downloads=true&stars=true
[]: https://img.shields.io/npm/l/mock-property.svg
[]: LICENSE
[]: https://img.shields.io/npm/dm/mock-property.svg
[]: https://npm-stat.com/charts.html?package=mock-property
[]: https://codecov.io/gh/ljharb/mock-property/branch/main/graphs/badge.svg
[]: https://app.codecov.io/gh/ljharb/mock-property/
[]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/mock-property
[]: https://github.com/ljharb/mock-property/actions