pixelnode/node_modules/mocha/lib/pending.js

16 lines
212 B
JavaScript
Raw Normal View History

2018-04-04 12:31:55 +02:00
/**
* Expose `Pending`.
*/
module.exports = Pending;
/**
* Initialize a new `Pending` error with the given message.
*
* @param {string} message
*/
function Pending(message) {
this.message = message;
}