Skip to content

Commit 3920ed8

Browse files
committed
fix: update Jest config to pass with no tests and use correct tsconfig
- Add passWithNoTests: true to Jest configuration - Fix tsconfig reference from tsconfig.eslint.json to tsconfig.json - Ensures CI tests pass when no test files are found
1 parent a06a9b4 commit 3920ed8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jest.config.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@ export default {
3131
'^.+\\.ts$': [
3232
'ts-jest',
3333
{
34-
tsconfig: 'tsconfig.eslint.json',
34+
tsconfig: 'tsconfig.json',
3535
useESM: true
3636
}
3737
]
3838
},
39-
verbose: true
39+
verbose: true,
40+
passWithNoTests: true
4041
}

0 commit comments

Comments
 (0)