Jest Migration
See original GitHub issueI have started a (new branch)[https://github.com/coryhouse/react-slingshot/tree/jest-migration].
The initial move was rather painless, but here are a few steps that I would see as required before merging in this change.
- Documentation Update
- Remove unused packages
- Add jest documents and help links
- Code Coverage - [https://facebook.github.io/jest/docs/configuration.html#configuration-options-configuration]
- Add Snapshot tests (EDIT No longer stretch, this is a simple add and very nice to use. We should absolutely add at least one.)
- Address Issues with Windows build (I think this is a path issue in the script)
- Remove extra comments that were referencing
chai
assertions that no longer apply (I noticed reference to deep equal) - Create Progress Reporter (This will be addressed directly in jest, see thread on facebook/jest#2703 for more details)
Please comment with any question or if I am missing anything that should be added to the list above.
Issue Analytics
- State:
- Created 7 years ago
- Comments:26 (7 by maintainers)
Top Results From Across the Web
Migrating to Jest
js or Tape you can automatically migrate with Jest Codemods (see below). If you like chai, you can upgrade to Jest and continue...
Read more >Migration from <=23.10 | ts-jest - GitHub Pages
You can use the config:migrate tool of ts-jest CLI if you're coming from an older version to help you migrate your Jest configuration....
Read more >Migrating to Jest - w3resource
That is obviously not what you intend to do, this tutorial will guide you on how to migrate an existing codebase to use...
Read more >Migration Guide - Vitest
Migrating from Jest #. Vitest has been designed with a Jest compatible API, in order to make the migration from Jest as simple...
Read more >jest-codemods - GitHub
Codemods for migrating to Jest https://github.com/facebook/jest - GitHub - skovhus/jest-codemods: Codemods for migrating to Jest ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
In effort to move this forward I have submitted facebook/jest#2703 to add a summary flag to
jest
.This will reduce the output to just the summary section on success. See image below.
I am starting to free up and make look into continuing this transition. I will also look into the feedback on the minimal output.