New
You're viewing older docs for version 6.5. View latest docs

Test coverage

Watch a video tutorial on the Storybook channel

Test coverage is the practice of measuring whether existing tests fully cover your code. That means surfacing areas which aren't currently being tested, such as: conditions, logic branches, functions and variables.

Coverage tests examine the instrumented code against a set of industry-accepted best practices. They act as the last line of QA to improve the quality of your test suite.

Test coverage

Code instrumentation with the coverage addon

Storybook provides an official test coverage addon. Powered by Instanbul, which allows out-of-the-box code instrumentation for the most commonly used frameworks and builders in the JavaScript ecosystem.

Set up the coverage addon

Engineered to work alongside modern testing tools (e.g., [Playwright), the coverage addon automatically instruments your code and generates code coverage data. For an optimal experience, we recommend using the test runner alongside the coverage addon to run your tests.

Run the following command to install the addon.

Update your Storybook configuration (in .storybook/main.js|ts) to include the coverage addon.

Start your Storybook with:

Finally, open a new terminal window and run the test-runner with:

Coverage test output

Configure

By default, the @storybook/addon-coverage offers zero-config support for Storybook and instruments your code via babel-plugin-istanbul for Babel, or vite-plugin-istanbul for Vite. However, you can extend your Storybook configuration file (i.e., .storybook/main.js|ts) and provide additional options to the addon. Listed below are the available options and examples of how to use them.

OptionDescriptionPlugin
cwdDefines the current working directory
options: { instanbul: { cwd: process.cwd(),}}
Babel, Vite
includeSelect the files to collect coverage
options: { instanbul: { include: ['**/stories/**'],}}
Babel, Vite
excludeSelect the files to exclude from coverage
options: { instanbul: { exclude: ['**/stories/**'],}}
Babel, Vite
extensionSets additional file extensions for coverage
options: { instanbul: { extension: ['.js', '.cjs', '.mjs'],}}
Babel, Vite
nycrcPathDefines the relative path for the existing nyc configuration file
options: { instanbul: { nycrcPath: '../nyc.config.js',}}
Babel, Vite
excludeNodeModulesDisables node_modules directory introspection
options: { instanbul: { excludeNodeModules:false,}}
Babel
ignoreClassMethodsConfigures a set of method names to ignore from being collected
options: { instanbul: { ignoreClassMethods: ['example', 'myMethod'],}}
Babel
useInlineSourceMapsEnables coverage collection on source maps
options: { instanbul: { useInlineSourceMaps: false,}}
Babel
inputSourceMapSets the value to store the source map.
Useful for instrumenting code programmatically
options: { instanbul: { inputSourceMap: sourceMap,}}
Babel
onCoverHook to monitor coverage collection for all tests
options: { instanbul: { onCover: (fileName, fileCoverage) => {},}}
Babel
requireEnvOverrides the VITE_COVERAGE environment variable's value by granting access to the env variables
options: { instanbul: { requireEnv: true,}}
Vite
cypressReplaces the VITE_COVERAGE environment variable with CYPRESS_COVERAGE.
Requires Cypress
options: { instanbul: { cypress: true,}}
Vite
checkProdConfigures the plugin to skip instrumentation in production environments
options: { instanbul: { checkProd: true,}}
Vite
forceBuildInstrumentConfigures the plugin to add instrumentation in build mode
options: { instanbul: { forceBuildInstrument: true,}}
Vite

What about other coverage reporting tools?

Out of the box, code coverage tests work seamlessly with Storybook's test-runner and the @storybook/addon-coverage. However, that doesn't mean you can't use additional reporting tools (e.g., Codecov). For instance, if you're working with LCOV, you can use the generated output (in coverage/storybook/coverage-storybook.json) and create your own report with:


Troubleshooting

Run test coverage in other frameworks

If you intend on running coverage tests in frameworks with special files like Vue or Svelte, you'll need to adjust your configuration and enable the required file extensions. For example, if you're using Vue, you'll need to add the following to your nyc configuration file (i.e., nycrc.json or nyc.config.js):

The coverage addon doesn't support instrumented code

As the coverage addon is based on Babel and Vite plugins for code instrumentation, frameworks that don't rely upon these libraries (e.g., Angular configured with Webpack), will require additional configuration to enable code instrumentation. In that case, you can refer to the following repository for more information.

Learn about other UI tests

Was this page helpful?

Markdown accepted ([link text](url), _italic_, **bold**, etc). Your anonymous feedback will be posted publicly on GitHub.

✍️ Edit on GitHub – PRs welcome!
Storybook
Join the community
6,565 developers and counting
WhyWhy StorybookComponent-driven UI
DocsGuidesTutorialsChangelogTelemetryStatus
CommunityAddonsGet involvedBlog
ShowcaseExploreProjectsComponent glossary
Open source software
Storybook

Maintained by
Chromatic
Special thanks to Netlify and CircleCI