Reasons to Love Jest: The Developer Experience
Read on to learn more about how the Jest framework makes it easier to run tests and make the whole testing experience a little better.
Join the DZone community and get the full member experience.
Join For FreeI'm a developer advocate at Snyk, and couldn't reinforce more how important it is to test your applications for security vulnerabilities in third-party open source libraries. If there's something I like as much as the sSyk developer tooling, it's Jest. The developer experience with it just amazing!
Oh yes. The developer experience with Jest is transforming the act of writing tests from a chore to hell of a fun time. I promise!
This post is a follow-up from my previous post about the Jest Framework:
The Logo
Aww, the logo. Isn’t it just good? Like it’s trying to tell you “are you gonna write tests? This is gonna be fun!”
And just like that it lures you in.
An anecdote on the logo if you will :
Recently I learned the Jest logo was created in a last minute sketch done by James Pearce where he iterated over several options (Twitter reference) but more amusingly Christoph Nakazawa mentioned that the circles positioned next to each other reminds him of a loading animation.
Visual Diff and Effective Verbosity
A big part of good developer experience is increasing your productivity. When it comes to testing, when tests fail, you want to quickly identify what went wrong with the test.
Take this code snippet for example:
It has a typo in the test’s source code. This is how Jest would show the error in the console:
It provides great context into the actual file, the line number, and arrows to point to the exact problem and colors the code with a syntax highlighter too.
Are you going to compare two objects in your assertions? No problem at all. Jest is so verbose that it will show this great diff, even for nested keys that are different between the objects you’re comparing:
Side note: Jest has been made very modular and many of its capabilities were moved out to individual modules that the community can make use of.
If you fancy the above diff’ing you can use it in your own project; see how here: http://jestjs.io/docs/en/jest-platform.html#jest-diff
Relaxed Conventions
If you’re coming from different test runners or frameworks, you’ll know that they differ in their test suites syntax.
Some use describe.only()
, while in others you can only have test()
. In some of them you disable a test by using test.skip()
while in others it’s exit()
.
With Jest, it doesn’t matter. It does its best to optimize productivity instead of strict conventions.
You can write test()
, or a nested describe()
and test()
, or just use it()
.
No brainer.
Which file naming convention should you use for tests? Who cares?!
Jest will automatically pick up any *.test.js or *.spec.js file extensions, as well as any files in a tests directory. Also, Jest has a friendly CLI that will help you figure out what you mean in case of spaghetti fingers:
Sure, it’s not a time machine, but it’s another corner stone in Jest’s productivity boosting and developer friendliness.
It’s the little things that matter the most.
Test Doubles
In automated testing, where we write and execute unit and integration tests, it is a common practice to make use of different kinds of test doubles to isolate different parts of the system.
There are different methods of isolation with different goals and behaviors, but they are all collectively referred to as test doubles.
Where as other libraries like Sinon require you to explicitly declare and choose a type of a test double for your test (a stub, a mock, a spy), Jest wraps everything into a single entry point called the Mock object (jest.fn).
The Mock is accessed and used in different ways through the test code, so essentially you don’t need to bother yourself with such decisions in your test code about types of test doubles. It’s another productivity gain with Jest.
That said, you should still understand testing principles.
Suggested reading about Test Doubles in Martin Fowler’s blog: https://martinfowler.com/bliki/TestDouble.html
Immersive Watch Mode
Some benefits of Jest’s watch mode that streamlines your development workflow:
- The obvious one being that instantly running tests as changes occur (in the IDE, or say you switch a branch).
- Jest resolves which tests to run automatically for you. It manages metadata about your source code so it can learn how to run only the relevant test files when a source code file is changed.
- Jest’s interactive watch mode will show you if you’re filtering for any file types. For example, if you ran Jest with a specific glob path, it will display it as an active filter:
No longer is test.only()
making it into your test code, and accidentally slipping into your PR. With Jest you can easily filter a test run by its filename or test name straight from the console. So just filter by the test name, and only it will get re-run whenever you make changes to the test file:
Other thing you should know about the test runner:
- Jest will run the slowest tests first to optimize for parallel CPU work and decrease overall test run times.
- Jest will run previously failing tests first to provide a quick feedback loop.
- Jest will pick the order of tests to run so you should definitely not have an expectation that they will run alphabetically, or in any other fashion. For you, they run completely randomly and it would be a bad practice to have test files named 01_loginFucntions.spec.js, 02_createUsers.spec.js, etc.
So what do you like about the developer experience when using Jest?
Published at DZone with permission of Liran Tal. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments