Closed VitalyyP closed 1 week ago
The changes in this pull request involve updates to the Jest configuration in jest.config.js
and the addition of a new dependency in package.json
. The Jest configuration now includes a preset for TypeScript support and recognized file extensions. The package.json
file has been modified to include ts-jest
as a development dependency, enabling seamless testing of TypeScript files.
File | Change Summary |
---|---|
jest.config.js | Added properties: preset: 'ts-jest' , moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'] . |
package.json | Added dependency: "ts-jest": "^29.2.5" in devDependencies . |
jest.config.js
, which relates directly to the Jest configuration updates made in the current PR.In the land of code, where rabbits play,
A Jest config blooms, brightening the day.
With TypeScript in tow, we leap and we bound,
Testing with joy, our new paths are found!
Hops of delight, as we code and we jest,
In this garden of scripts, we’re truly the best! 🐇✨
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Issues
0 New issues
0 Accepted issues
Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code
Summary by CodeRabbit
New Features
Chores
package.json
to includets-jest
as a development dependency.