Skip to content

Commit

Permalink
Format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniovazquezblanco committed Jun 24, 2024
1 parent 2dcbf77 commit 165d240
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import type { Config } from "jest";
const config: Config = {
preset: "ts-jest/presets/default-esm",
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.js$': '$1',
"^(\\.{1,2}/.*)\\.js$": "$1",
},
verbose: true,
collectCoverage: true,
coverageDirectory: "coverage",
coverageProvider: "v8"
coverageProvider: "v8",
};

export default config;

2 comments on commit 165d240

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.16% 134/147
🟑 Branches 78.26% 18/23
🟒 Functions 100% 10/10
🟒 Lines 91.16% 134/147

Test suite run success

6 tests passing in 2 suites.

Report generated by πŸ§ͺjest coverage report action from 165d240

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

Caution

An unexpected error occurred. For more details, check console

TypeError: Cannot read properties of undefined (reading 'totalStatements')
St.❔
Category Percentage Covered / Total
🟒 Statements 91.16% 134/147
🟑 Branches 78.26% 18/23
🟒 Functions 100% 10/10
🟒 Lines 91.16% 134/147

Test suite run success

6 tests passing in 2 suites.

Report generated by πŸ§ͺjest coverage report action from 165d240

Please sign in to comment.