Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jpb06 committed Feb 21, 2023
1 parent 03b67a7 commit 272bf1c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/logic/jest/isJestCoverageReportAvailable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ interface JestCoverage {
export const isJestCoverageReportAvailable = async (): Promise<boolean> => {
const coverageSummaryPath = getInput('coverage-summary-path');

console.log(process.cwd(), coverageSummaryPath);
const coverageExists = await pathExists(coverageSummaryPath);
if (!coverageExists) {
return false;
Expand Down

0 comments on commit 272bf1c

Please sign in to comment.