Skip to content

Commit 1be8704

Browse files
fix(examples): add missing dependencies wo (#32977)
The `with-jest` example has been converted to TypeScript (#32705) , but `typescript` and `@types/react` were missing from `devDependencies` ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [ ] Errors have helpful link attached, see `contributing.md` ## Documentation / Examples - [ ] Make sure the linting passes by running `yarn lint`
1 parent 7c8500f commit 1be8704

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/with-jest/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717
"@testing-library/jest-dom": "5.16.1",
1818
"@testing-library/react": "12.1.2",
1919
"@testing-library/user-event": "13.5.0",
20+
"@types/react": "17.0.38",
2021
"babel-jest": "27.4.5",
2122
"eslint": "8.5.0",
2223
"eslint-config-next": "latest",
2324
"eslint-plugin-testing-library": "5.0.1",
24-
"jest": "27.4.5"
25+
"jest": "27.4.5",
26+
"typescript": "4.5.4"
2527
}
2628
}

0 commit comments

Comments
 (0)