UNPKG

only-changed-jest-watch-plugin

Version:

Jest watch plugin for running either only the modified test (for TDD), or tests of dependant modules

14 lines (11 loc) 318 B
'use strict'; var util = require('util'); var getPolyfill = require('./polyfill'); module.exports = function shimUtilPromisify() { var polyfill = getPolyfill(); if (polyfill !== util.promisify) { util.promisify = polyfill; Object.defineProperty(util, 'promisify', { value: polyfill }); } return polyfill; };