Skip to content

Commit d33d9fc

Browse files
committed
Include the external/ folder in the coverage report for gulp unittestcli
Given that the (browser) `gulp unittest` coverage includes the `external/` folder, it seems reasonable to include that folder in the coverage report when running unit-tests in Node.js as well.
1 parent ac51bdf commit d33d9fc

2 files changed

Lines changed: 1 addition & 15 deletions

File tree

.c8rc.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

gulpfile.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1725,7 +1725,7 @@ function buildLibHelper(bundleDefines, inputStream, outputDir) {
17251725
"babel-plugin-istanbul",
17261726
{
17271727
cwd: __dirname,
1728-
include: ["src/**/*.js", "web/**/*.js"],
1728+
include: ["external/**/*.js", "src/**/*.js", "web/**/*.js"],
17291729
},
17301730
]);
17311731
}

0 commit comments

Comments
 (0)