Skip to content

percy/example-percy-storybook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

example-percy-storybook

Example app showing integration of Percy visual testing into Storybook.

Based on the TodoMVC app, written with the latest version of Storybook for React.

Storybook Tutorial

The tutorial assumes you're already familiar with JavaScript and Storybook and focuses on using it with Percy. You'll still be able to follow along if you're not familiar with Storybook, but we won't spend time introducing Storybook concepts.

The tutorial also assumes you have Node 12+ with npm and git installed.

Step 1

Clone the example application and install dependencies:

$ git clone git@github.com:percy/example-percy-storybook.git
$ cd example-percy-storybook
$ npm install

The example app and its tests will now be ready to go. You can explore the app by running npm start.

Step 2

Sign in to Percy and create a new project. You can name the project "todo" if you'd like. After you've created the project, you'll be shown a token environment variable.

Step 3

In the shell window you're working in, export the token environment variable:

Unix

$ export PERCY_TOKEN="<your token here>"

Windows

$ set PERCY_TOKEN="<your token here>"

# PowerShell
$ $Env:PERCY_TOKEN="<your token here>"

Note: Usually this would only be set up in your CI environment, but to keep things simple we'll configure it in your shell so that Percy is enabled in your local environment.

Step 4

Check out a new branch for your work in this tutorial (we'll call this branch tutorial-example), then run tests & take snapshots:

$ git checkout -b tutorial-example
$ npm run test

This will run the app's Percy tests, which will start Storybook and create Percy snapshots for each Story. The snapshots will then be uploaded to Percy for comparison. Percy will use the Percy token you used in Step 2 to know which organization and project to upload the snapshots to.

You can view the screenshots in Percy now if you want, but there will be no visual comparisons yet. You'll see that Percy shows you that these snapshots come from your tutorial-example branch.

Step 5

Use your text editor to edit js/TodoFooter.js and introduce some visual changes. For example, you can add inline CSS to bold the "Clear completed" button on line 36. After the change, that template looks like this:

<button
  style={{ fontWeight: 'bold' }}
  className="clear-completed"
  onClick={onClearCompleted}>
  Clear completed
</button>

Step 6

Commit the change:

$ git commit -am "Emphasize 'Clear completed' button"

Step 7

Run the tests with snapshots again:

$ npm run test

This will run the tests again and take new snapshots of our modified application. The new snapshots will be uploaded to Percy and compared with the previous snapshots, showing any visual diffs.

At the end of the test run output, you will see logs from Percy confirming that the snapshots were successfully uploaded and giving you a direct URL to check out any visual diffs.

Step 8

Visit your project in Percy and you'll see a new build with the visual comparisons between the two runs. Click anywhere on the Build 2 row. You can see the original snapshots on the left, and the new snapshots on the right.

Percy has highlighted what's changed visually in the app! Snapshots with the largest changes are shown first You can click on the highlight to reveal the underlying screenshot.

If you scroll down, you'll see that no other test cases were impacted by our changes to the 'Clear completed' button. The unchanged snapshots appear grouped together at the bottom of the list.

Finished! 😀

From here, you can try making your own changes to the app and tests, if you like. If you do, re-run the tests and you'll see any visual changes reflected in Percy.

About

Example app demonstrating Percy's Storybook integration.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published