storybook/docs/writing-tests/test-coverage.md
jonniebigodes 9eb7055f57
Merge pull request #20085 from storybookjs/chore_assets_docs_misc
Chore: (Docs) Asset conversion to the new UI
2022-12-04 16:18:46 +00:00

153 lines
8.4 KiB
Markdown

---
title: 'Test coverage'
---
<YouTubeCallout id="wEa6W8uUGSA" title="These tests use NO CODE | component testing in Storybook" />
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](./test-coverage-storybook.gif)
## Code instrumentation with the coverage addon
Storybook provides an official [test coverage addon](https://storybook.js.org/addons/@storybook/addon-coverage). Powered by [Instanbul](https://istanbul.js.org/), 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](https://playwright.dev/)), the coverage addon automatically instruments your code and generates code coverage data. For an optimal experience, we recommend using the [test runner](./test-runner.md) alongside the coverage addon to run your tests.
Run the following command to install the addon.
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-coverage-addon-install.yarn.js.mdx',
'common/storybook-coverage-addon-install.npm.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
Update your Storybook configuration (in `.storybook/main.js|ts`) to include the coverage addon.
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-coverage-addon-registration.js.mdx',
'common/storybook-coverage-addon-registration.ts.mdx',
]}
/>
<!-- prettier-ignore-end -->
Start your Storybook with:
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-run-dev.yarn.js.mdx',
'common/storybook-run-dev.npm.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
Finally, open a new terminal window and run the test-runner with:
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-test-runner-coverage.yarn.js.mdx',
'common/storybook-test-runner-coverage.npm.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
![Coverage test output](./test-runner-coverage-result.png)
### Configure
By default, the [`@storybook/addon-coverage`](https://storybook.js.org/addons/@storybook/addon-coverage) offers zero-config support for Storybook and instruments your code via [`babel-plugin-istanbul`](https://github.com/istanbuljs/babel-plugin-istanbul) for [Babel](https://babeljs.io/), or [`vite-plugin-istanbul`](https://github.com/iFaxity/vite-plugin-istanbul) for [Vite](https://vitejs.dev/). 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.
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-coverage-addon-config-options.js.mdx',
'common/storybook-coverage-addon-config-options.ts.mdx',
]}
/>
<!-- prettier-ignore-end -->
| Option | Description | Plugin |
| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
| `cwd` | Defines the current working directory <br/>`options: { instanbul: { cwd: process.cwd(),}}` | Babel, Vite |
| `include` | Select the files to collect coverage <br/>`options: { instanbul: { include: ['**/stories/**'],}}` | Babel, Vite |
| `exclude` | Select the files to exclude from coverage <br/>`options: { instanbul: { exclude: ['**/stories/**'],}}` | Babel, Vite |
| `extension` | Sets additional file extensions for coverage <br/>`options: { instanbul: { extension: ['.js', '.cjs', '.mjs'],}}` | Babel, Vite |
| `nycrcPath` | Defines the relative path for the existing nyc configuration file <br/>`options: { instanbul: { nycrcPath: '../nyc.config.js',}}` | Babel, Vite |
| `excludeNodeModules` | Disables `node_modules` directory introspection <br/>`options: { instanbul: { excludeNodeModules:false,}}` | Babel |
| `ignoreClassMethods` | Configures a set of method names to ignore from being collected <br/>`options: { instanbul: { ignoreClassMethods: ['example', 'myMethod'],}}` | Babel |
| `useInlineSourceMaps` | Enables coverage collection on source maps <br/>`options: { instanbul: { useInlineSourceMaps: false,}}` | Babel |
| `inputSourceMap` | Sets the value to store the source map.<br/> Useful for instrumenting code programmatically <br/>`options: { instanbul: { inputSourceMap: sourceMap,}}` | Babel |
| `onCover` | Hook to monitor coverage collection for all tests <br/>`options: { instanbul: { onCover: (fileName, fileCoverage) => {},}}` | Babel |
| `requireEnv` | Overrides the `VITE_COVERAGE` environment variable's value by granting access to the `env` variables <br/>`options: { instanbul: { requireEnv: true,}}` | Vite |
| `cypress` | Replaces the `VITE_COVERAGE` environment variable with `CYPRESS_COVERAGE`. <br/>Requires Cypress <br/>`options: { instanbul: { cypress: true,}}` | Vite |
| `checkProd` | Configures the plugin to skip instrumentation in production environments <br/>`options: { instanbul: { checkProd: true,}}` | Vite |
| `forceBuildInstrument` | Configures the plugin to add instrumentation in build mode <br/>`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`](https://storybook.js.org/addons/@storybook/addon-coverage). However, that doesn't mean you can't use additional reporting tools (e.g., [Codecov](https://about.codecov.io/)). For instance, if you're working with [LCOV](https://wiki.documentfoundation.org/Development/Lcov), you can use the generated output (in `coverage/storybook/coverage-storybook.json`) and create your own report with:
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-coverage-report-lcov.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
---
## 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`):
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-coverage-report-vue.json.mdx',
'common/storybook-coverage-report-vue.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
### The coverage addon doesn't support instrumented code
As the [coverage addon](https://storybook.js.org/addons/@storybook/addon-coverage) 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](https://github.com/yannbf/storybook-coverage-recipes) for more information.
#### Learn about other UI tests
- [Test runner](./test-runner.md) to automate test execution
- [Visual tests](./visual-testing.md) for appearance
- [Accessibility tests](./accessibility-testing.md) for accessibility
- [Interaction tests](./interaction-testing.md) for user behavior simulation
- Coverage tests for measuring code coverage
- [Snapshot tests](./snapshot-testing.md) for rendering errors and warnings
- [Import stories in other tests](./importing-stories-in-tests.md) for other tools