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

Commit 3e7fc76

Browse files
authored
Update Jest to v29 (#339)
* Update Jest to v29 * Remove types * Remove @types/jest * Update tests * Update jest config * Remove @jest/types
1 parent 5800b2f commit 3e7fc76

File tree

5 files changed

+822
-969
lines changed

5 files changed

+822
-969
lines changed

jest.config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import type { Config } from '@jest/types'
1+
import type { Config } from 'jest'
22

3-
const config: Config.InitialOptions = {
3+
const config: Config = {
44
preset: 'ts-jest',
55
collectCoverage: true,
66
collectCoverageFrom: [

package.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
"node": "16.11.1"
1717
},
1818
"devDependencies": {
19-
"@jest/types": "27.4.2",
2019
"@tsconfig/node16": "1.0.3",
21-
"@types/jest": "27.4.1",
2220
"@types/node": "16.11.32",
2321
"@typescript-eslint/eslint-plugin": "5.40.0",
2422
"eslint": "8.25.0",
@@ -28,10 +26,10 @@
2826
"eslint-plugin-node": "11.1.0",
2927
"eslint-plugin-promise": "6.1.0",
3028
"husky": "7.0.4",
31-
"jest": "27.4.7",
29+
"jest": "29.2.0",
3230
"lint-staged": "13.0.3",
3331
"rimraf": "3.0.2",
34-
"ts-jest": "27.1.4",
32+
"ts-jest": "29.0.3",
3533
"ts-node": "10.9.1",
3634
"typescript": "4.8.4"
3735
},

src/greet.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { describe, expect, it } from '@jest/globals'
12
import { greet } from './greet'
23

34
describe('greet', () => {

tsconfig.json

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
11
{
2-
"extends": "./tsconfig.base.json",
3-
"compilerOptions": {
4-
"types": [
5-
"node",
6-
"jest"
7-
]
8-
}
2+
"extends": "./tsconfig.base.json"
93
}

0 commit comments

Comments
 (0)