From b84c469b23f2c82d87beb2f57afb865aebc8fa9f Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Wed, 15 Jan 2020 16:42:40 +0800 Subject: [PATCH] nyc: measure coverage of all files (except benchmark and polyfills) --- .nycrc.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.nycrc.yml b/.nycrc.yml index f6ead2c2e3..ee5019fd26 100644 --- a/.nycrc.yml +++ b/.nycrc.yml @@ -1,7 +1,10 @@ +all: true include: - 'src/' exclude: - 'src/polyfills' + - '**/*-benchmark.js' + - '**/*.d.ts' clean: true temp-directory: 'coverage/tests' report-dir: 'coverage/tests'