UNPKG

approvals

Version:

Approval Tests Library - Capturing Human Intelligence

14 lines (10 loc) 218 B
import { Reporter } from "../../Core/Reporter"; export default class DoNothingReporter implements Reporter { name: string = "DoNothing"; canReportOn() { return true; } report() { // Do nothing } }