UNPKG

approvals

Version:

Approval Tests Library - Capturing Human Intelligence

15 lines (14 loc) 291 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class DoNothingReporter { constructor() { this.name = "DoNothing"; } canReportOn() { return true; } report() { // Do nothing } } exports.default = DoNothingReporter;