|
1 year ago | |
---|---|---|
.. | ||
lib | 1 year ago | |
History.md | 1 year ago | |
LICENSE | 1 year ago | |
README.md | 1 year ago | |
package.json | 1 year ago |
Object method mocking.
const fs = require('fs');
const muk = require('muk-prop');
muk(fs, 'readFile', (path, callback) => {
process.nextTick(callback.bind(null, null, 'file contents here'));
});
Check if member has been mocked.
muk.isMocked(fs, 'readFile'); // true
Restore all mocked methods after tests.
muk.restore();
fs.readFile(file, (err, data) => {
// will actually read from `file`
});
npm install muk-prop
Tests are written with mocha
npm test