UNPKG

mocha

Version:

Classic, reliable, trusted test framework for Node.js and the browser

18 lines (15 loc) 272 B
/** @module Pending */ /** * Initialize a new `PendingError` error with the given message. * * @param {string} message */ class PendingError extends Error { constructor(message) { super(message); this.name = "PendingError"; } } export { PendingError };