Subscribe

Jest test vs it

✍️

What is the difference between test and it in Jest

10 Apr, 2022 · 2 min read

When working on Jest test cases, you might come across two different approaches, as you can see below.

test('if this function succeeds', () => {
  expect(1).toBeTruthy();
});

it('should test if this function succeeds', () => {
  expect(1).toBeTruthy();
});

As you can see, the above tests are pretty much the same function. However, the naming is different.

The difference between test and it in Jest

Basically, it is an alias for test, so they are functionally the same.

So, what makes it different?

This alias is created to make your tests more readable from a test output point of view.

It can really help make your tests more readable from a readability point of view.

Imagine the second test to use the test function.

test('should test if this function succeeds', () => {
  expect(1).toBeTruthy();
});

This immediately sounds a bit off, right?

And these outputs definitely show up weird in your test result, so try to make them look as much like English sentences as possible.

Which one wins?

This totally depends on the use case.

I personally use it more for render checks. It often makes more sense.

  • ”it should have a button."
  • "it should navigate to x.”

However, it’s totally up to you which one makes more sense for specific use-cases.

Which one do you prefer?

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next 📖

Testing library asFragment tests

18 Apr, 2022 · 2 min read

Testing library asFragment tests

Changing the default testing container

17 Apr, 2022 · 3 min read

Changing the default testing container

Join 2099 devs and subscribe to my newsletter