Skip to content
This repository was archived by the owner on Sep 28, 2025. It is now read-only.

Commit e5782fe

Browse files
authored
updating jest config
1 parent 5fb22fb commit e5782fe

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

client/jest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const config: Config = {
2828
coverageDirectory: "coverage",
2929

3030
// An array of regexp pattern strings used to skip coverage collection
31-
coveragePathIgnorePatterns: ["\\\\node_modules\\\\"],
31+
coveragePathIgnorePatterns: ["node_modules"],
3232

3333
// Indicates which provider should be used to instrument code for coverage
3434
coverageProvider: "v8",

jest.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ const config: Config = {
2929

3030
// An array of regexp pattern strings used to skip coverage collection
3131
coveragePathIgnorePatterns: [
32-
"\\\\node_modules\\\\",
33-
"\\\\coverage\\\\"
32+
"node_modules",
33+
"coverage"
3434
],
3535

3636
// Indicates which provider should be used to instrument code for coverage

server/jest.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ const config: Config = {
2929

3030
// An array of regexp pattern strings used to skip coverage collection
3131
coveragePathIgnorePatterns: [
32-
"\\\\node_modules\\\\",
33-
"\\\\coverage\\\\"
32+
"node_modules",
33+
"coverage"
3434
],
3535

3636
// Indicates which provider should be used to instrument code for coverage

0 commit comments

Comments
 (0)