1. 30
    Testing Components with jest-dom's toHaveClass Matcher
    2m 37s

Testing Components with jest-dom's toHaveClass Matcher

Jamund Ferguson
InstructorJamund Ferguson
Share this video with your friends

Social Share Links

Send Tweet
Published 3 years ago
Updated 2 years ago

Jest DOM is a utility that extends jest with additional "matchers". Essentially additional methods I can use when I expect() on an element. Some of these include toBeVisible, toBeValid, toBeInTheDocument, toBeChecked, toHaveStyle and toHaveClass.

For this lesson use toHaveClass to ensure that our table is in the correct state. First it will show no special class when we first attempt to checkout, then after we attempt to checkout it will show the checkoutLoading class and then after our API call completes trying to checkout with no items, we'll see our table will have the class checkoutError.

In general testing for class names is a little bit brittle, but if we use this technique sparingly, such as in cases where we use classes to highlight an error. I think the approach is worth the risk.


We use the .not property of expect here to explicitly say that our table should not have a class. This property will reverse whatever our matcher is looking for and can come in handy in a lot of situations.

Instructor: For this next lesson, we're going to test what happens when you try to checkout and there are not items in your cart. We should the cart itself wrapped in a red border. We should also see this error, "Cart must not be empty."

Start up Jest in watch mode and open up cart.test.tsx. At the top of the file, we're going to change our import of API from just importing the product type to importing * as API from app/API. Then, below that, type Product = API.Product. That way, all of the references we have to as Product will remain working as before.

Now type const checkoutSpy = jest.spyOn(API). In this case, we're going to spy on the checkout method. Down at the bottom of the file, let's add a new test called Cannot Checkout With An Empty Cart. Inside of that test, we're going to render with context car component without any special state, which means it should be empty.

Then, we're going to grab hold of the checkout button, with screen.getbyroll button, and with the name of checkout. We're also going to grab a hold of the table, const table=screen.getByRole table.

Initially, we want to expect that the table does not to have class checkout loading. We're not in any sort of loading state. Then, we're going to click on the checkout button, and then we will expect our table to have class checkout loading at least for a little bit.

Then, we're going to use awaitscreen.findbytext to wait for the error text, cart must not be empty. That's going to require us to have an async function here.

When the cart comes back with this error, also expect table to have class of checkout error. Now, when we go to run this test, you'll see that it doesn't pass. If you scroll up, you can see why.

In our error box, we see the message, "Fetch is not defined." We haven't actually marked out our API. To do that at the top of our test, we need to type checkoutspy.mockrejectedvalueonce.

That rejected value is going to be new error, "Cart must not be empty." Now, our test passed. Even though we initially set up a spy for api.checkout, until we've a new resolved or rejected value, it was still going to try to hit the server to do our checkout.

Once we set mockrejectedvalue once with our new error, we could see that our table is responding correctly with the right classes and that the error box shows up with the proper text.

If you want to be a little bit more specific, we can also set a selector here for the error box class, and it continues the pass as expected.

michauxkelley@gmail.com Kelley
michauxkelley@gmail.com Kelley
~ 8 months ago

Around 1:47 the code for the test 'cannot checkout with an empty cart' should be:

await userEvent.click(checkout); expect(table).toHaveClass('checkoutLoading'); waitFor(() => { screen.findByText('Cart must not be empty'); expect(table).toHaveClass('checkoutError'); });

michauxkelley@gmail.com Kelley
michauxkelley@gmail.com Kelley
~ 8 months ago

Newlines didn't show in the above comment, so just make sure to put a new line after each semi-colon

michauxkelley@gmail.com Kelley
michauxkelley@gmail.com Kelley
~ 8 months ago

Actually not sure about this one, but this is the only bit of the test I could get to pass:

test('Cannot checkout with an empty cart', async () => {

checkoutSpy.mockRejectedValueOnce(new Error('Cart must not be empty'));

const { debug } = renderWithContext(<Cart />);

const checkout = screen.getByRole('button', { name: 'Checkout' });

let table = screen.getByRole('table');

expect(table).not.toHaveClass('checkoutLoading');

await userEvent.click(checkout);

// This doesn't work // expect(table).toHaveClass('checkoutLoading');

expect(table).toHaveClass('checkoutError');

screen.getByText('Cart must not be empty');

});

michauxkelley@gmail.com Kelley
michauxkelley@gmail.com Kelley
~ 8 months ago

So I was actually able to get the test to pass all the conditions using:

test('Cannot checkout with an empty cart', async () => {

checkoutSpy.mockRejectedValueOnce(new Error('Cart must not be empty'));

renderWithContext(<Cart />);

const checkout = screen.getByRole('button', { name: 'Checkout' });

let table = screen.getByRole('table');

expect(table).not.toHaveClass('checkoutLoading');

await waitFor(async () => {

await userEvent.click(checkout);

expect(table).toHaveClass('checkoutLoading');

});

setTimeout(() => {

expect(table).toHaveClass('checkoutError');

screen.getByText('Cart must not be empty');

}, 10);

});

michauxkelley@gmail.com Kelley
michauxkelley@gmail.com Kelley
~ 8 months ago

My previous code is wrong because the timeout happens after the test has already run.

And I wasn't able to get it to work with mockRejectedValueOnce. (Do you know why?)

Sorry, the correct test code is:

test('Cannot checkout with an empty cart', async () => {

checkoutSpy.mockRejectedValue(new Error('Cart must not be empty'));

renderWithContext(<Cart />);

const checkout = screen.getByRole('button', { name: 'Checkout' });

const table = screen.getByRole('table');

expect(table).not.toHaveClass('checkoutLoading');

await waitFor(() => {

userEvent.click(checkout);

expect(table).toHaveClass('checkoutLoading');

});

await new Promise((r) => setTimeout(r, 10));

expect(table).toHaveClass('checkoutError');

screen.getByText('Cart must not be empty');

});

michauxkelley@gmail.com Kelley
michauxkelley@gmail.com Kelley
~ 8 months ago

userEvent.click(checkout); doesn't need to be in the waitFor

Markdown supported.
Become a member to join the discussionEnroll Today