2016 в Jest
2016 рік був дуже важливим для JavaScript тестування з Jest. Перші пів року ми переписували Jest і створювали надійну основу для значного підвищення продуктивності та допомоги в тестуванні JavaScript коду. We flow-typed the entire codebase, built a ton of integration tests for Jest itself and adopted lerna to turn Jest from a framework into a Painless JavaScript Testing platform.
The newly created react-test-renderer finally enabled testing of react-native components. Through the jest-react-native preset (now merged directly into react-native) Jest now works out of the box for any React project and comes pre-configured in create-react-app and react-native projects. We integrated core pieces of Jest into react-native's packager and the completely new snapshot testing feature has since been used outside of Jest: It was integrated with React Storybook as “storyshots” and is being adopted by other test runners like ava.
The pretty-format project was rewritten with performance in mind to drive Jest's snapshot feature, was recently merged into Jest's monorepo and is also helpful in other test runners. На цей момент Jest презентує збірник різних ідей та рішень для тестування, а не єдину конкретну реалізацію тестового фреймворку.
I'd like to deeply thank all the people that have contributed to Jest this year, both from the open source community and at Facebook: Dmitrii Abramov, Cristian Carlesso, Dan Abramov, Daniel Lo Nigro, Maxim Derbin, Evan Scott, Forbes Lindesay, Keyan Zhang and 60 more people. We'd also like to welcome Michał Pierzchała (@thymikee) as first official external contributor to Jest. Він провів чудову роботу з управління проблемами та PR-ами репозиторію. If you'd like to start contributing to Jest, we have a bunch of good first tasks and we are always happy to help on our discord channel.
repl.it with Jest integration
Amjad Massad built a Jest container so you can now try out Jest directly in the browser. З цього моменту, ви можете використовувати його при створенні проблем на GitHub, що має допомогти швидше розв'язувати проблеми. Amjad and Haya are building repl.it to democratize programming by building powerful yet simple tools and platforms for educators, learners, and developers. They are also hiring talented engineers!
Оновлення спільноти
We feel incredibly humbled that 100+ companies have adopted Jest in the last six months. Такі компанії, як Twitter, Pinterest, Paypal, nytime, IBM (Watson), Spotify, eBay, SoundCloud, Intuit, FormidableLabs, Automattic, Trivago та Microsoft повністю або частково перейшли на Jest через потреби в тестуванні JavaScript. Ми вдячні за шанс, який ви дали цьому проєкту. Ми також хотіли б подякувати всім, хто відвідував конференції та зустрічі для презентації Jest і усім, хто створює дописи в блогах про власний досвід з Jest!
Ось що сталося у спільноті за останні два місяці:
- Jason Bonta and Dmitrii Abramov redefined the “testing pyramid” we were talking a lot about at Facebook.
- jest-codemods now allows you to painlessly migrate from Mocha, Tape and Ava to Jest.
- The React team announced improvements to the react-test-renderer in 15.4.0.
- Orta Therox build an amazing vscode-jest integration and donated the code for editor support to Jest.
- Pavithra Kodmad is documenting Flipkarts adoption of Jest and shares some getting started tips.
- Kent C. Dodds wrote about migrating to Jest at Paypal and Jason Brown wrote about migrating to Jest as well.
- Ben McCormick wrote about saving time with Jest.
- Eric Clemmons wrote about snapshots and storybook integration.
- Edvin Erikson wrote about getting Tap output in Jest.
- jest-html can bring snapshot diffing to your browser.
- There were a few great conversations on hackernews about Jest.
- The community started a great discussion about the future of enzyme.
- Ruben Oostinga wrote about combining chai and Jest matchers.
- Emil Ong wrote about why “TDD'ing your frontend seems pointless”.
- Nate Hunzaker wrote about end-to-end testing with Jest and Nightmare.
- Using Jest with Angular just works according to Matthieu Lux.
- A fantastic conversation about the purpose of snapshot testing is happening right now.
- Dmitrii made a new music video with his metal band.
- lazyspec can help you create smoke tests quickly if you are introducing tests to an existing codebase.
- Patrick Stapfer did a lightning talk about vim and Jest.
- Mark Dalgleish was commenting on the value of snapshot testing.
New features, changes and fixes in Jest 17 & 18
Jest був створений понад п'ять років тому, тож, як старий фреймворк, він накопичив технічний борг. Ось чому ми рішуче робимо великі зміни частіше, ніж може здатися необхідним: ми вважаємо за потрібне поступово зменшувати технічний борг, аби забезпечити Jest повноцінною довгостроковою підтримкою. We didn't announce Jest 17 in a blog post and if you haven't upgraded to it in the last month you may find the changelog useful.
- Breaking: Removed
pitin favor ofitortestandmockImplin favor ofjest.fn()ormockImplementation. - Breaking: Renamed
--jsonOutputFileto--outputFile. - Breaking: Updated
testRegexto includetest.jsandspec.jsfiles. - Breaking: Replaced
scriptPreprocessorwith the newtransformoption. - Breaking: The
testResultsProcessorfunction is now required to return the modified results. - Potentially Breaking: Properly resolve
snapshotSerializers,setupFiles,transform,testRunnerandtestResultsProcessorwith a resolution algorithm instead of usingpath.resolve. This mainly means that<rootDir>is no longer needed for these options. - Added:
pretty-formatandjest-editor-supportwere merged into Jest. - Added:
expect.any,expect.anything,expect.objectContaining,expect.arrayContaining,expect.stringMatching. - Added:
--testResultsProcessoris now exposed through the cli. - Added: Implemented file watching in
jest-haste-map. - Added: Usage of Jest in watch mode can be hidden through
JEST_HIDE_USAGE. - Added:
expect.assertions(number)which will ensure that a specified amount of assertions is made in one test. - Added:
.toMatchSnapshot(?string)feature to give snapshots a name. - Added:
toMatchObject,toHaveProperty,toHaveLengthmatchers. - Added:
expect.extend. - Added: Added support for custom snapshots serializers.
- Added: Big diffs are now collapsed by default in snapshots and assertions. Added
--expand(or-e) to show the full diff. - Added:
jest.resetAllMockswhich replacesjest.clearAllMocks. - Added:
--jsonnow includes information about individual tests inside a file. - Fixed:
test.concurrentunhandled promise rejections. - Fixed:
babel-plugin-jest-hoistwhen usingjest.mockwith three arguments. - Fixed: The
JSONglobal injest-environment-nodenow comes from the vm context instead of the parent context. - Fixed: Jest does not print stack traces from babel any longer.
- Fixed: Fake timers are reset when
FakeTimers.useTimers()is called. - Fixed: Regular expressions are properly escaped in snapshots.
- Fixed: Improved pretty printing of large objects.
- Fixed:
NaN% Failedin the OS notification when using--notify. - Fixed: The first test run without cached timings will now use separate processes instead of running in band.
- Fixed:
Map/Setcomparisons. - Fixed:
test.concurrentnow works with--testNamePattern. - Fixed: Improved
.toContainmatcher. - Fixed: Properly resolve modules with platform extensions on react-native.
- Fixed: global built in objects in
jest-environment-nodenow work properly. - Fixed: Create mock objects in the vm context instead of the parent context.
- Fixed:
.babelrcis now part of the transform cache key inbabel-jest. - Fixed: docblock parsing with haste modules.
- Fixed: Exit with the proper code when the coverage threshold is not reached.
- Fixed: Jest now clears the entire scrollback in watch mode.
- Deprecated:
jest-react-nativewas deprecated and now forwardsreact-native.
Плани Jest на першу половину 2017
Six months ago we shared our plans for Jest and we are happy that we were able to execute well on almost all of them. Наші плани на наступні шість місяців:
- Instant feedback: Nuclide integration and an improved and faster watch mode.
- Improved developer experience: new mocking APIs and improved assertions.
- Better performance and memory usage: analyze Jest and be more conscious about efficiency.
- Snapshot Improvements: snapshot approval mode, syntax highlighting and improved
react-test-rendererAPIs. - Website: We'll overhaul the website and documentation and add a Jest cheat sheet.
Ми не надаватимемо графіків та розрахунків для цих нововведень, може так статись, що не все вдасться реалізувати. Якщо ви хочете допомогти з реалізацією, надішліть нам задачі та запроси на злиття з вашими ідеями; працюватимемо над покращенням Jest у 2017 році разом.
