0.2.0 • Published 5 years ago

remuire v0.2.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

Remuire

Remuire is a Node.js Runtime mock utility that extends the require method of a module

Installation

$ npm install --save-dev remuire

Node.js >= 10.12.0

Usage

// a.test.js
const remuire = require('remuire')(module)
// mock  src/a.js ===>>>>>> mock/a.js
remuire.mock('../src/a.js', './mock/a.js')

// recover all mock modules
remuire.revover()

You need to mock the module before it is referenced

Explain

  1. Due to remuire's rewrite of the require module, it is not recommended for use in a production environment and is recommended for use in a unit test environment
  2. Remuire works in the global environment

LICENSE

MIT LICENSE