From d9f971673986f744f3d89777c2bf745efd4a3ac1 Mon Sep 17 00:00:00 2001 From: Andrei Picus Date: Thu, 31 Aug 2017 20:15:26 +0200 Subject: [PATCH] Don't instrument the playground nyc has a bug where it walks all the files when `all: true`. https://github.com/istanbuljs/nyc/issues/581 --- .nycrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.nycrc.json b/.nycrc.json index d60cf48..60d3782 100644 --- a/.nycrc.json +++ b/.nycrc.json @@ -7,7 +7,8 @@ "**/webpack.config.*", "src/index*", "src/app-factory.js", - "tests/unit/**/*.js" + "tests/unit/**/*.js", + "playground" ], "extension": [".js", ".jsx"], "all": true,