Skip to content

Commit e42e405

Browse files
committed
Bump jest from 28.1.3 to 29.7.0
1 parent ff32f05 commit e42e405

File tree

3 files changed

+1366
-2447
lines changed

3 files changed

+1366
-2447
lines changed

Diff for: jest.config.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** @type {import("ts-jest").JestConfigWithTsJest} */
12
export default {
23
clearMocks: true,
34
collectCoverage: true,
@@ -8,18 +9,13 @@ export default {
89
"!**/node_modules/**",
910
],
1011
coverageDirectory: "./coverage/",
11-
globals: {
12-
"ts-jest": {
13-
diagnostics: false,
14-
}
15-
},
1612
moduleFileExtensions: ["js", "ts"],
1713
reporters: ["default", "github-actions"],
1814
testEnvironment: "node",
1915
testMatch: ["**/*.test.ts"],
2016
testRunner: "jest-circus/runner",
2117
transform: {
22-
"^.+\\.ts$": "ts-jest",
18+
"^.+\\.ts$": ["ts-jest", { diagnostics: false }],
2319
},
2420
verbose: true,
2521
};

0 commit comments

Comments
 (0)