2017-05-14 01:10:52 +02:00

2.2 KiB

id title
structural-testing Structural Testing

For React, Jest's snapshot testing is the best way to do Structural Testing. It's painless to use and maintain. We've integrated Jest's snapshot testing directly into Storybook using a new tool called StoryShots. Now we can simply use existing stories as the input for snapshot testing.

What's Snapshot Testing?

With Snapshot testing, we keep a file copy of the structure of UI components. Think of it like a set of HTML sources.

Then, after we've completed any UI changes, we compare new snapshots with the snapshots that we kept in the file.

If things are not the same, we can do two things:

  1. We can consider new snapshots that show the current state, and then update them as new snapshots.
  2. We can find the root cause for the change and fix our code.

We can also commit these snapshots directly into the source code.

Using StoryShots

StoryShots is our integration between Storybook and Jest Snapshot Testing. It's pretty simple to use.

First, make sure you are inside a Storybook-enabled repo (make sure it has few stories). Then, install StoryShots into your app with:

npm i -D @kadira/storyshots

Then, add the following NPM script into your package.json:

{
  "scripts": {
    "test-storybook": "storyshots"
  }
}

Now you can run the above command with:

npm run test-storybook

This will save the initial set of snapshots inside your Storybook config directory.

StoryShots First

After you complete any changes, you can run the above NPM script again and find our structural changes.

StoryShots Diff View


StoryShots also comes with a few important productive features that can be customized. Have a look at the StoryShots repo for more information.