From 1b4c061ca6f22581b4ba2efccaa460d96a853e30 Mon Sep 17 00:00:00 2001 From: Mitchell Borrego Date: Mon, 16 Aug 2021 09:52:30 -0400 Subject: [PATCH] Update index.ts --- src/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 8f9e94aff..1d44ef66b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -149,8 +149,7 @@ export async function main( // Remove invalid and duplicate file paths coverageFilePaths = [... new Set(coverageFilePaths.filter(file => { - return validateHelpers.validateFileNamePath(file) && - fileExists(args.dir || projectRoot, file) + return fileExists(args.dir || projectRoot, file) }))] if (coverageFilePaths.length > 0) {