docs/writing-tests/integrations/vitest-addon/index.mdx
<If notRenderer={['react', 'preact', 'vue', 'svelte', 'web-components']}>
<Callout variant="info">The Vitest addon is supported and recommended for React, Preact, Vue, Svelte, and Web Components projects, which use the Vite builder (or the Next.js framework with Vite).
If you are using a different renderer (such as Angular) or the Webpack builder, you can use the Storybook test runner to test your stories.
</Callout> </If><If renderer={['react', 'preact', 'vue', 'svelte', 'web-components']}>
Storybook's Vitest addon allows you to test your components directly inside Storybook. On its own, it transforms your stories into component tests, which test the rendering and behavior of your components in a real browser environment. It can also calculate project coverage provided by your stories.
If your project is using other testing addons, such as the Visual tests addon or the Accessibility addon, you can run those tests alongside your component tests.
When component tests are run for a story, the status is shown in the sidebar. The sidebar can be filtered to only show failing stories, and you can press the menu button on a failing story to see debugging options.
You can also run tests in watch mode, which will automatically re-run tests when you make changes to your components or stories. To activate, press the watch mode toggle (the eye icon) in the testing widget.
<Video src="../../../_assets/writing-tests/addon-vitest-overview.mp4" />Before installing, make sure your project meets the following requirements:
vue3-vite, react-vite, preact-vite, nextjs-vite, sveltekit, etc.)Run the following command to install and configure the addon automatically:
<CodeSnippets path="addon-test-install.md" />The add command will:
The setup is fully automated and handles all configuration for you. The full configuration options can be found in the API section, below.
<Callout variant="info">If you're prompted to install Playwright browser binaries during setup, select "Yes" to install them. These are required for running tests in browser mode, which is the recommended setup for component testing.
You can install the Playwright browser binaries at any time by running playwright install.
For some project setups, the add command may be unable to automate the addon and plugin setup and ask you to complete additional setup steps. Here's what to do:
@storybook/addon-vitest, in your project and register it in your Storybook configuration.When the addon is set up automatically, it will create or adjust your Vitest configuration files for you. If you're setting up manually, you can use the following examples as a reference when configuring your project.
<details id="example-vitest-config"> <summary>Example Vitest config file</summary>The most simple application of the plugin is to include it in your Vitest configuration file:
<CodeSnippets path="vitest-plugin-vitest-config.md" /> </details> <details id="example-vitest-workspace"> <summary>Example Vitest workspace file (Vitest < 3.2)</summary>If you're using a Vitest workspace, you can define a new workspace project:
<CodeSnippets path="vitest-plugin-vitest-workspace.md" /> </details>There are multiple ways to run tests using the addon.
We recommend (and configure, by default) running Vitest in browser mode, using Playwright's Chromium browser. Browser mode ensures your components are tested in a real browser environment, which is more accurate than simulations like JSDom or HappyDom. This is especially important for testing components that rely on browser APIs or features.
The easiest way to run tests is through the Storybook UI. With a click, you can run multiple types of tests for all stories in your project, a group of stories, or a single story.
To run all tests for your whole project, press the Run tests button in the testing widget at the bottom of the sidebar.
Alternatively, you can expand the testing widget to run specific types of tests individually. The sub-types listed under component tests will all run together, including when watch mode (which will automatically re-run relevant tests upon code changes) is enabled (with the eye icon).
<Callout variant="info" icon="ℹ️">If you have the Visual tests addon installed, you'll see an option to run Visual tests alongside Component tests.
Other addons, such as a11y, may also provide test types that can be run from the testing widget and affect the status indicators on stories and components.
</Callout>To run tests for a specific story or group of stories, press the menu button (three dots) that appears on hover of a sidebar item. You can then select the test type you want to run.
After running your tests, you will now see status indicators on stories and components for their pass, fail, or error state. You can press on the menu button when hovering a story to see the test results for that story. Selecting a result in the menu will navigate you to that story and open the appropriate debugging panel. For example, if an interaction test fails, you can jump straight to the failure in the Interactions panel. That panel provides an interactive debugger for your test, allowing you to step through each simulated behavior or assertion.
The testing widget will also show you the total number of tests run, the number of tests that passed, and the number of tests that failed or errored. You can press the failure number to filter the sidebar to only those stories that failed.
<Video src="../../../_assets/writing-tests/addon-vitest-filter-failures.mp4" />You can also run tests using the Vitest CLI. We recommend adding a script to your package.json to make running tests easier. Here's an example of how to do that:
{
"scripts": {
"test": "vitest",
"test-storybook": "vitest --project=storybook"
}
}
In this example, we've added two scripts: test to run all tests in your project (you may already have this), and test-storybook to run only your Storybook tests. The --project=storybook flag tells Vitest to run the tests for the Storybook project.
Then, run this command to run your tests (in watch mode, by default) using the Vitest CLI:
<CodeSnippets path="vitest-plugin-run-tests.md" />While the plugin does not require Storybook to run when testing, you may still want to run Storybook to debug your tests. To enable this, provide the storybookScript option in the plugin configuration. When you run Vitest in watch mode, the plugin will start Storybook using this script and provide links to the story in the output on test failures. This allows you to quickly jump to the story in Storybook to debug the issue.
You can also provide a storybookUrl option to the plugin configuration. When you're not using watch mode and tests fail, the plugin will provide a link to the story using this URL in the output. This is useful when running tests in CI or other environments where Storybook is not already running.
Transforming your stories into Vitest tests with the plugin also enables you to run and debug tests using Vitest IDE integrations. This allows you to run tests directly from your editor, such as VSCode and JetBrains IDE.
This screenshot shows how you can run your Vitest tests in VSCode using the Vitest extension. Stories are annotated with the test status, and, when a test fails, a link to the story is provided for debugging.
For the most part, running your Storybook tests in CI is done via the CLI.
However, to have the test output link to your published Storybook on test failures, you need to provide the storybookUrl option in the plugin configuration. Please reference the detailed example in the Testing in CI guide.
The Vitest addon works by using a Vitest plugin to transform your stories into Vitest tests using portable stories. It also configures Vitest to run those tests in browser mode, using Playwright's Chromium browser. Because it is built on top of Vitest, the addon requires a Vite-based Storybook framework.
Stories are tested in two ways: a smoke test to ensure it renders and, if a play function is defined, that function is run and any assertions made within it are validated.
When you run tests in the Storybook UI, the addon runs Vitest in the background and reports the results in the sidebar.
The tests run by the addon can be configured in two ways. You can toggle which test types are run and include, exclude, or skip stories from being tested.
In addition to component tests, the Vitest addon supports multiple types of tests, depending on which other addons you are using in your project. Some test types, like visual tests, are run independently. Others, like accessibility, must be run alongside component tests. For these dependent test types, you can toggle them on or off in the testing widget by checking or unchecking the test types you want to run.
Note that you may not have all of the test types pictured, depending on which addons you have installed.
You can use tags to include, exclude, or skip stories from being tested. Included stories are tested, excluded stories are not tested, and skipped stories are not tested but are counted in the test results.
By default, the plugin will run all stories with the test tag. You can adjust this behavior by providing the tags option in the plugin configuration. This allows you to include, exclude, or skip stories based on their tags.
In this example, we'll apply the stable tag to all of the Button component's stories, except for ExperimentalFeatureStory, which will have the experimental tag:
To connect those tags to our test behavior, we can adjust the plugin configuration to exclude the experimental tag:
If the same tag is in both the include and exclude arrays, the exclude behavior takes precedence.
The test runner requires a running Storybook instance to test your stories, because it visits each one, executes the play function, and listens for results. The Vitest plugin, however, transforms your stories into tests using Vite and portable stories, so it does not need to run Storybook to test your stories. Because of this reliance on Vite, the plugin can only be used with Storybook frameworks that use Vite (and Next.js). The test runner, on the other hand, can be used with any Storybook framework.
| Feature | Vitest addon | test-runner |
|---|---|---|
| Test types | ||
| - Interaction tests | ✅ | ✅ |
| - Accessibility tests | ✅ | ✅ |
| - Visual tests | ✅ | ❌ |
| - Snapshot tests | ❌ | ✅ |
| Testing contexts | ||
| - Storybook UI | ✅ | ❌ |
| - Editor extensions | ✅ | ❌ |
| - CLI | ✅ | ✅ |
| - In CI | ✅ | ✅ |
| Tests run via | Vitest | Jest |
| Works with all Storybook frameworks | ❌ (requires Vite) | ✅ |
| Runs tests in a real browser environment | ✅ | ✅ |
| Calculates code coverage | ✅ | ✅ (with addon-coverage) |
| Requires a running or published Storybook | ❌ | ✅ |
| Extensible to other addons | ✅ | ❌ |
The test runner is only a CLI tool. It does not have a UI for running tests, nor does it have an editor extension. The addon, however, provides a UI in Storybook for running tests, and it enables you to run and debug tests using Vitest IDE integrations.
Additionally, the test runner ran your stories as orchestrated tests in Jest, and that orchestration came with some complexity. By comparison, this plugin transforms your stories into real tests and then runs them using Vitest, which is simpler and more configurable.
Finally, because of the simpler architecture and the use of Vitest, this plugin should be faster than the test runner for most projects. We'll do more benchmarking to quantify this in the future.
Sometimes tests can fail because of errors within Vitest itself. When this happens, the testing widget in the Storybook UI will alert you to the error, and you can click a link to view it in full. The error will also be logged to the console.
Vitest offers troubleshooting help for common errors.
When you run tests with this addon, they are run as Vitest tests with whatever configuration you have set up in your project. By default, they will run in browser mode, using Playwright's Chromium browser. Sometimes, tests will fail when run in the addon (or via CLI), but then pass when viewed in the Interactions panel (or vice versa). This can happen because the tests are run in different environments, which can have different behaviors.
The plugin will attempt to provide links to the story in Storybook when tests fail in CLI, for debugging purposes.
If the URLs are not working when running tests in watch mode, you should check two configuration options:
storybookUrl: Ensure this URL is correct and accessible. For example, the default is http://localhost:6006, which may not use the same port number you're using.storybookScript: Ensure this script is correctly starting Storybook.If the URLs are not working when running tests in CI, you should ensure the Storybook is built and published before running the tests. You can then provide the URL to the published Storybook using the storybookUrl option. See the In CI section for an example.
If your stories use assets in the public directory and you're not using the default public directory location (public), you need to adjust the Vitest configuration to include the public directory. You can do this by providing the publicDir option in the Vitest configuration file.
Some projects might contain a test property in their Vite configuration. Because the Vitest configuration used by this plugin extends that Vite config, the test properties are merged. This lack of isolation can cause issues with your Storybook tests.
To isolate your Storybook tests from other tests, you need to move the test property from your Vite configuration to the Vitest configuration. The Vitest config used by the plugin can then safely extend your Vite config without merging the test property.
Additionally, we recommend using a test project if you're using Vitest ≥ 4.0, or a workspace for previous versions to define separate configurations for your Storybook tests and other tests. This ensures each can be run either in isolation or together, depending on your needs.
Vitest's browser mode runs your tests in a real browser (Chromium, via Playwright, in the default configuration). The alternative is a simulated browser environment, like JSDom or HappyDom, which can have differences in behavior compared to a real browser. For UI components, which can often depend on browser APIs or features, running tests in a real browser is more accurate.
For more, see Vitest's guide on using browser mode effectively.
We recommend running tests in a browser using Playwright, but you can use WebDriverIO instead. To do so, you need to adjust the browser provider in the Vitest configuration file.
We recommend using Chromium, because it is most likely to best match the experience of a majority of your users. However, you can use other browsers by adjusting the browser name in the Vitest configuration file. Note that Playwright and WebDriverIO support different browsers.
By default, the export name of a story is mapped to the test name. To create a more descriptive test description, you can provide a name property for the story. This allows you to include spaces, brackets, or other special characters.
export const Story = {
name: 'custom, descriptive name'
};
m.createRoot is not a function error?This error can occur when using the addon on a project that uses a React version other than 18. To work around the issue, you can provide an alias to ensure the correct React version is used. Here's an example of how to do that in the Vitest configuration file:
import { defineConfig } from 'vitest/config';
export default defineConfig({
// ...
resolve: {
alias: {
"@storybook/react-dom-shim": "@storybook/react-dom-shim/dist/react-16",
},
},
});
Error: Vitest failed to find the current suite error?If you encounter this error, it's often not a Vitest issue but rather related to how your stories are being transformed. Here are steps to troubleshoot:
The most common fix is to pre-optimize your dependencies. You can do this by adding the dependencies to your Vite config's optimizeDeps.include array.
This prevents mid-test dependency optimization, which can interfere with Vitest's test suite management.
These errors typically occur in CI environments when running a large number of tests simultaneously, which can overwhelm the available resources. They do not usually appear locally because local machines tend to have more available resources or fewer tests run in parallel.
There are two recommended approaches to fix this:
1. Disable isolation mode
By default, Vitest isolates each test file in its own environment. Disabling this can reduce resource consumption and prevent the errors:
export default defineConfig({
test: {
// ...
isolate: false,
},
});
See Vitest's isolate configuration for more details.
2. Use sharding to split tests across multiple CI jobs
Sharding distributes your test files across several parallel CI jobs, reducing the load on each individual runner:
# Run shard 1 of 3
vitest run --shard=1/3
# Run shard 2 of 3
vitest run --shard=2/3
# Run shard 3 of 3
vitest run --shard=3/3
See Vitest's sharding guide for more details on how to integrate this into your CI pipeline.
This addon has the following exports:
import { storybookTest } from '@storybook/addon-vitest/vitest-plugin'
storybookTestType: function
A Vitest plugin that transforms your stories into tests. It accepts an options object for configuration.
The plugin is configured using an options object. Here are the available properties:
configDirType: string
Default: .storybook
The directory where the Storybook configuration is located, relative to the current working directory.
If your Storybook configuration is not in the default location, you must specify the location here so the plugin can function correctly.
storybookScriptType: string
Optional script to run Storybook. If provided, Vitest will start Storybook using this script when run in watch mode. Only runs if the Storybook in storybookUrl is not already available.
storybookUrlType: string
Default: http://localhost:6006
The URL where Storybook is hosted. This is used for internal checks and to provide a link to the story in the test output on failures.
tagsType:
{
include: string[];
exclude: string[];
skip: string[];
}
Default:
{
include: ['test'],
exclude: [],
skip: [],
}
Tags to include, exclude, or skip. These tags are defined as annotations in your story, meta, or preview.
include: Stories with these tags will be testedexclude: Stories with these tags will not be tested, and will not be counted in the test resultsskip: Stories with these tags will not be tested, and will be counted in the test resultsdisableAddonDocsType: boolean
Default: true
Whether to disable addon docs MDX parsing while running tests.
When either the preview config or stories import mdx files, they are mocked as normally they are not needed for tests.
You might set disableAddonDocs to false only in case your stories actually need to read and parse MDX files as part of rendering your components.
More testing resources