From bc2689f58d656a4d8e146f777d02ae4523a3e4a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Mon, 9 Jul 2018 17:01:52 +0200 Subject: [PATCH] Hide nyc coverage from test output Configure nyc/istanbul to generate an HTML report that can be inspected in a browser instead of printing a long table after each test run. --- .nycrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.nycrc b/.nycrc index fd199844..9c81728d 100644 --- a/.nycrc +++ b/.nycrc @@ -2,5 +2,8 @@ "exclude": [ "test/**/*.js" ], + "reporter": [ + "html" + ], "cache": true }