1. 27
    Using Preloaded State from Multiple Reducers for Testing a React Component
    1m 36s

Using Preloaded State from Multiple Reducers for Testing a React Component

Jamund Ferguson
InstructorJamund Ferguson
Share this video with your friends

Social Share Links

Send Tweet
Published 3 years ago
Updated 2 years ago

For this lesson we rely on our getStateWithItems helper to produce some state with both a product and an item in the cart. This is needed for our cart component to be able to display the total at the bottom of the page.

We run into one issue here with TypeScript and not wanting to fill out the entire product type, which has a lot of fields like imageURL and imageAlt that we aren't asserting on in our tests. To get around that we use as Product here to cast our partial product object into a full one for the purposes of this test.

Instructor: For the next test, open up cart.test.tsx and import the Product type from app/API. Now add a new test called Cart Should Display Correct Total. For this one, we're going to need some items in our cart. Type const state equals, and go ahead and import at the top, getStateWithItems from TestUtils.

For this, we're going to pass in an item with an ID of TestItem, and we will purchase three of those. For the total to display, we also need a price. To do that, we need to add some products. We'll create a product with an ID of TestItem. For this to show up properly, we're going to need a name. We'll call it TestProduct, and a price. We'll make this one $11.11.

Now, this works fine, except you'll notice that TypeScript isn't happy with this. This is only part of the definition of a product. It's enough to render what we want rendered. For that, we're going to cast it as a full product. That makes TypeScript happy. That's why we had to pull in the type from app/API.

With this, we can now say renderWithContext cart, and pass in that state. Now let's grab some of our previous statements and apply them here. We can say, expect now to have three rows, and expect the total to be $33.33. If you run our test, you can see that that will pass.

Nothing too special here. We just rendered our cart with some pre-builtin state, this time using both Items and Products. In order to get Products to work without all the required fields, we cast it as a product type.

egghead
egghead
~ 33 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today