From fc326b62ff5fcf66e67de99b24aa6271c2e82197 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Wed, 9 Nov 2022 02:57:40 -0500 Subject: [PATCH] tests: remove reporter from coverage testing --- reporter.cjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/reporter.cjs b/reporter.cjs index 04bb1530d..4642a4a55 100644 --- a/reporter.cjs +++ b/reporter.cjs @@ -1,5 +1,7 @@ 'use strict'; +/* c8 ignore start */ + const Mocha = require('mocha'); const { EVENT_RUN_BEGIN, @@ -211,3 +213,5 @@ class MyReporter { } module.exports = MyReporter; + +/* c8 ignore stop */