https://github.com/andrejewski/object-mock
Mock object properties temporarily
https://github.com/andrejewski/object-mock
Last synced: 9 months ago
JSON representation
Mock object properties temporarily
- Host: GitHub
- URL: https://github.com/andrejewski/object-mock
- Owner: andrejewski
- License: mit
- Created: 2017-08-04T17:29:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-04T20:38:46.000Z (over 8 years ago)
- Last Synced: 2025-05-15T11:12:54.815Z (9 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# object-mock
Mock object properties temporarily
```sh
npm install object-mock
```
```js
import assert from 'assert'
import mock from 'object-mock'
const unmock = mock(process, 'platform', 'chris')
assert(process.platform === 'chris')
unmock()
assert(process.platform !== 'chris')
```