UNPKG

check-tests

Version:

Static analysis for tests. Prints all tests in console and fails when exclusive or skipped tests found.

12 lines (9 loc) 213 B
const Comment = require('../comment'); class CommentError extends Error { getComment() { const c = new Comment(); c.body += `\n ⛔ ${this.message}`; return c; } } module.exports = CommentError;