Socket
Book a DemoInstallSign in
Socket

@cnpmjs/muk-prop

Package Overview
Dependencies
Maintainers
4
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cnpmjs/muk-prop

Mock object methods and properties.

Source
npmnpm
Version
1.0.0
Version published
Maintainers
4
Created
Source

@cnpmjs/muk-prop

NPM version Node.js CI codecov npm download Node.js Version

muk

Usage

Object method mocking.

const fs = require('fs');
const { muk } = require('@cnpmjs/muk-prop');

muk(fs, 'readFile', (path, callback) => {
  process.nextTick(callback.bind(null, null, 'file contents here'));
});

Object props mocking with setter/getter.

const { muk } = require('@cnpmjs/muk-prop');

const obj = { _a: 1 };
muk(obj, 'a', {
  set: (val) => obj._a = val * 2,
  get: (val) => obj._a,
});

obj.a = 2;
console.log(obj.a); // 4

Check if member has been mocked.

const { isMocked } = require('@cnpmjs/muk-prop');

isMocked(fs, 'readFile'); // true

Restore all mocked methods/props after tests.

const { restore } = require('@cnpmjs/muk-prop');

fs.readFile(file, (err, data) => {
  // will actually read from `file`
});

Install

npm install @cnpmjs/muk-prop

Tests

Tests are written with mocha

npm test

Contributors

Contributors

Made with contributors-img.

Keywords

test

FAQs

Package last updated on 20 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts