From 842f54520734c44b3775a03cdafdb53b49a14df7 Mon Sep 17 00:00:00 2001 From: Paul Melnikow Date: Sun, 18 Nov 2018 14:26:25 -0500 Subject: [PATCH] Coverage: ignore next.config (#2358) It does not make sense to check coverage for `next.config.js`. This file is run by the frontend build, which seems sufficient. If that file has logic in it that is complex enough to warrant testing, it should be broken out into a separate file. --- .nycrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.nycrc.json b/.nycrc.json index b01698753e..3f75dcca47 100644 --- a/.nycrc.json +++ b/.nycrc.json @@ -5,6 +5,7 @@ "**/*.spec.js", "**/*.integration.js", "dangerfile.js", + "next.config.js", "services/**/*.tester.js", "test-fixtures", "scripts",