From 41f116a479077295ffc2aa49dcbd55f37742312a Mon Sep 17 00:00:00 2001 From: Darcy Rayner Date: Fri, 20 Apr 2018 23:10:41 -0600 Subject: [PATCH] docs: Add note about multiple coverage paths to README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 32aa12a..36680b1 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,8 @@ schedule(istanbulCoverage({ // The location of the istanbul coverage file. coveragePath: "./coverage/coverage-summary.json", + // Alternatively, if you have multiple coverage summaries, you can merge them into one report + coveragePaths: ["./dir1/coverage-summary.json", "./dir2/coverage-summary.json"] // Which set of files to summarise from the coverage file. reportFileSet: "all", // || "modified" || "created" || "createdOrModified"