From b2d641e647fb7ee590b2212217720c122d04a50e Mon Sep 17 00:00:00 2001 From: Denis Demchenko Date: Sat, 19 Jan 2019 11:49:28 +0200 Subject: [PATCH] Fix nyc config to exclude built files from coverage --- .nycrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.nycrc b/.nycrc index 22d40db..19cd746 100644 --- a/.nycrc +++ b/.nycrc @@ -1,4 +1,10 @@ { "sourceMap": false, - "instrument": false + "instrument": false, + "include": [ + "src/**/*.js" + ], + "exclude": [ + "*.js" + ] }