vitest
will read your root vite.config.ts
when it is present to match with the plugins and setup as your Vite app. If you want to have a different configuration for testing or your main app doesn't rely on Vite specifically, you could either:
vitest.config.ts
, which will have the higher priority and will override the configuration from vite.config.ts
--config
option to CLI, e.g. vitest --config ./path/to/vitest.config.ts
process.env.VITEST
or mode
property on defineConfig
(will be set to test
/benchmark
if not overridden) to conditionally apply different configuration in vite.config.ts
To configure vitest
itself, add test
property in your Vite config. You'll also need to add a reference to Vitest types using a triple slash command at the top of your config file, if you are importing defineConfig
from vite
itself.
using defineConfig
from vite
you should follow this:
/// <reference types="vitest" /> import { defineConfig } from 'vite' export default defineConfig({ test: { // ... }, })
/// <reference types="vitest" /> import { defineConfig } from 'vite' export default defineConfig({ test: { // ... }, })
using defineConfig
from vitest/config
you should follow this:
import { defineConfig } from 'vitest/config' export default defineConfig({ test: { // ... }, })
import { defineConfig } from 'vitest/config' export default defineConfig({ test: { // ... }, })
You can retrieve Vitest's default options to expand them if needed:
import { configDefaults, defineConfig } from 'vitest/config' export default defineConfig({ test: { exclude: [...configDefaults.exclude, 'packages/template/*'], }, })
import { configDefaults, defineConfig } from 'vitest/config' export default defineConfig({ test: { exclude: [...configDefaults.exclude, 'packages/template/*'], }, })
When using a separate vitest.config.js
, you can also extend Vite's options from another config file if needed:
import { mergeConfig } from 'vite' import { defineConfig } from 'vitest/config' import viteConfig from './vite.config' export default mergeConfig(viteConfig, defineConfig({ test: { exclude: ['packages/template/*'], }, }))
import { mergeConfig } from 'vite' import { defineConfig } from 'vitest/config' import viteConfig from './vite.config' export default mergeConfig(viteConfig, defineConfig({ test: { exclude: ['packages/template/*'], }, }))
In addition to the following options, you can also use any configuration option from Vite. For example, define
to define global variables, or resolve.alias
to define aliases.
string[]
['**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}']
Files to include in the test run, using glob pattern.
string[]
['**/node_modules/**', '**/dist/**', '**/cypress/**', '**/.{idea,git,cache,output,temp}/**']
Files to exclude from the test run, using glob pattern.
{ external?, inline? }
Handling for dependencies inlining or externalizing
(string | RegExp)[]
['**/node_modules/**', '**/dist/**']
Externalize means that Vite will bypass the package to native Node. Externalized dependencies will not be applied Vite's transformers and resolvers, so they do not support HMR on reload. Typically, packages under node_modules
are externalized.
(string | RegExp)[] | true
[]
Vite will process inlined modules. This could be helpful to handle packages that ship .js
in ESM format (that Node can't handle).
If true
, every dependency will be inlined. All dependencies, specified in ssr.noExternal
will be inlined by default.
boolean
false
When a dependency is a valid ESM package, try to guess the cjs version based on the path. This might be helpful, if a dependency has the wrong ESM file.
This might potentially cause some misalignment if a package has different logic in ESM and CJS mode.
boolean
false
Use experimental Node loader to resolve imports inside node_modules
, using Vite resolve algorithm.
If disabled, your alias
and <plugin>.resolveId
won't affect imports inside node_modules
or deps.external
.
boolean
true
Interpret CJS module's default as named exports.
{ include?, exclude?, ... }
Options used when running vitest bench
.
string[]
['**/*.{bench,benchmark}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}']
Include globs for benchmark test files
string[]
['node_modules', 'dist', '.idea', '.git', '.cache']
Exclude globs for benchmark test files
string[]
[]
Include globs for in-source benchmark test files. This option is similar to includeSource
.
When defined, Vitest will run all matched files with i
inside.
Arrayable<BenchmarkBuiltinReporters | Reporter>
'default'
Custom reporter for output. Can contain one or more built-in report names, reporter instances, and/or paths to custom reporters.
string | Record<string, string>
Write benchmark results to a file when the --reporter=json
option is also specified. By providing an object instead of a string you can define individual outputs when using multiple reporters.
To provide object via CLI command, use the following syntax: --outputFile.json=./path --outputFile.junit=./other-path
.
Record<string, string> | Array<{ find: string | RegExp, replacement: string, customResolver?: ResolverFunction | ResolverObject }>
Define custom aliases when running inside tests. They will be merged with aliases from resolve.alias
.
boolean
false
By default, vitest
does not provide global APIs for explicitness. If you prefer to use the APIs globally like Jest, you can pass the --globals
option to CLI or add globals: true
in the config.
// vite.config.ts import { defineConfig } from 'vitest/config' export default defineConfig({ test: { globals: true, }, })
// vite.config.ts import { defineConfig } from 'vitest/config' export default defineConfig({ test: { globals: true, }, })
To get TypeScript working with the global APIs, add vitest/globals
to the types
field in your tsconfig.json
// tsconfig.json { "compilerOptions": { "types": ["vitest/globals"] } }
// tsconfig.json { "compilerOptions": { "types": ["vitest/globals"] } }
If you are already using unplugin-auto-import
in your project, you can also use it directly for auto importing those APIs.
// vite.config.ts import { defineConfig } from 'vitest/config' import AutoImport from 'unplugin-auto-import/vite' export default defineConfig({ plugins: [ AutoImport({ imports: ['vitest'], dts: true, // generate TypeScript declaration }), ], })
// vite.config.ts import { defineConfig } from 'vitest/config' import AutoImport from 'unplugin-auto-import/vite' export default defineConfig({ plugins: [ AutoImport({ imports: ['vitest'], dts: true, // generate TypeScript declaration }), ], })
'node' | 'jsdom' | 'happy-dom' | 'edge-runtime' | string
'node'
The environment that will be used for testing. The default environment in Vitest is a Node.js environment. If you are building a web application, you can use browser-like environment through either jsdom
or happy-dom
instead. If you are building edge functions, you can use edge-runtime
environment
By adding a @vitest-environment
docblock or comment at the top of the file, you can specify another environment to be used for all tests in that file:
Docblock style:
/** * @vitest-environment jsdom */ test('use jsdom in this test file', () => { const element = document.createElement('div') expect(element).not.toBeNull() })
/** * @vitest-environment jsdom */ test('use jsdom in this test file', () => { const element = document.createElement('div') expect(element).not.toBeNull() })
Comment style:
// @vitest-environment happy-dom test('use happy-dom in this test file', () => { const element = document.createElement('div') expect(element).not.toBeNull() })
// @vitest-environment happy-dom test('use happy-dom in this test file', () => { const element = document.createElement('div') expect(element).not.toBeNull() })
For compatibility with Jest, there is also a @jest-environment
:
/** * @jest-environment jsdom */ test('use jsdom in this test file', () => { const element = document.createElement('div') expect(element).not.toBeNull() })
/** * @jest-environment jsdom */ test('use jsdom in this test file', () => { const element = document.createElement('div') expect(element).not.toBeNull() })
If you are running Vitest with --no-threads
flag, your tests will be run in this order: node
, jsdom
, happy-dom
, edge-runtime
, custom environments
. Meaning, that every test with the same environment is grouped together, but is still running sequentially.
Starting from 0.23.0, you can also define custom environment. When non-builtin environment is used, Vitest will try to load package vitest-environment-${name}
. That package should export an object with the shape of Environment
:
import type { Environment } from 'vitest' export default <Environment>{ name: 'custom', setup() { // custom setup return { teardown() { // called after all tests with this env have been run } } } }
import type { Environment } from 'vitest' export default <Environment>{ name: 'custom', setup() { // custom setup return { teardown() { // called after all tests with this env have been run } } } }
Vitest also exposes builtinEnvironments
through vitest/environments
entry, in case you just want to extend it. You can read more about extending environments in our guide.
Record<'jsdom' | string, unknown>
{}
These options are passed down to setup
method of current environment
. By default, you can configure only JSDOM options, if you are using it as your test environment.
boolean
false
Update snapshot files. This will update all changed snapshots and delete obsolete ones.
boolean
true
Enable watch mode
string
Project root
Reporter | Reporter[]
'default'
Custom reporters for output. Reporters can be a Reporter instance or a string to select built in reporters:
'default'
- collapse suites when they pass'verbose'
- keep the full task tree visible'dot'
- show each task as a single dot'junit'
- JUnit XML reporter'json'
- give a simple JSON summary'./path/to/reporter.ts'
, '@scope/reporter'
)number
80
Truncate output diff lines up to 80
number of characters. You may wish to tune this, depending on you terminal window width.
number
15
Limit number of output diff lines up to 15
.
string | Record<string, string>
Write test results to a file when the --reporter=json
or --reporter=junit
option is also specified. By providing an object instead of a string you can define individual outputs when using multiple reporters.
To provide object via CLI command, use the following syntax: --outputFile.json=./path --outputFile.junit=./other-path
.
boolean
true
Enable multi-threading using tinypool (a lightweight fork of Piscina)
This option is different from Jest's --runInBand
. Vitest uses workers not only for running tests in parallel, but also to provide isolation. By disabling this option, your tests will run sequentially, but in the same global context, so you must provide isolation yourself.
This might cause all sorts of issues, if you are relying on global state (frontend frameworks usually do) or your code relies on environment to be defined separately for each test. But can be a speed boost for your tests (up to 3 times faster), that don't necessarily rely on global state or can easily bypass that.
number
Maximum number of threads. You can also use VITEST_MAX_THREADS
environment variable.
number
Minimum number of threads. You can also use VITEST_MIN_THREADS
environment variable.
number
5000
Default timeout of a test in milliseconds
number
10000
Default timeout of a hook in milliseconds
number
1000
Default timeout to wait for close when Vitest shuts down, in milliseconds
boolean
false
Silent console output from tests
string | string[]
Path to setup files. They will be run before each test file.
You can use p
(integer-like string) inside to distinguish between threads (will always be '1'
, if run with threads: false
).
Note, that if you are running --no-threads
, this setup file will be run in the same global scope multiple times. Meaning, that you are accessing the same global object before each test, so make sure you are not doing the same thing more than you need.
For example, you may rely on a global variable:
import { config } from '@some-testing-lib' if (!globalThis.defined) { config.plugins = [myCoolPlugin] computeHeavyThing() globalThis.defined = true } // hooks are reset before each suite afterEach(() => { cleanup() }) globalThis.resetBeforeEachTest = true
import { config } from '@some-testing-lib' if (!globalThis.defined) { config.plugins = [myCoolPlugin] computeHeavyThing() globalThis.defined = true } // hooks are reset before each suite afterEach(() => { cleanup() }) globalThis.resetBeforeEachTest = true
string | string[]
Path to global setup files, relative to project root
A global setup file can either export named functions setup
and teardown
or a default
function that returns a teardown function (example).
Multiple globalSetup files are possible. setup and teardown are executed sequentially with teardown in reverse order.
Beware that the global setup is run in a different global scope, so your tests don't have access to variables defined here.
string[]
['**/node_modules/**', '**/dist/**']
Glob pattern of file paths to be ignored from triggering watch rerun.
string[]
['**/package.json/**', '**/vitest.config.*/**', '**/vite.config.*/**']
Glob pattern of file paths that will trigger the whole suite rerun. When paired with the --changed
argument will run the whole test suite if the trigger is found in the git diff.
Useful if you are testing calling CLI commands, because Vite cannot construct a module graph:
test('execute a script', async () => { // Vitest cannot rerun this test, if content of `dist/index.js` changes await execa('node', ['dist/index.js']) })
test('execute a script', async () => { // Vitest cannot rerun this test, if content of `dist/index.js` changes await execa('node', ['dist/index.js']) })
Make sure that your files are not excluded by watchExclude
.
boolean
true
Isolate environment for each test file. Does not work if you disable --threads
.
CoverageC8Options | CoverageIstanbulOptions
undefined
You can use c8
or istanbul
for coverage collection.
'c8' | 'istanbul'
'c8'
Use provider
to select the tool for coverage collection.
Used when provider: 'c8'
is set. Coverage options are passed to c8
.
Used when provider: 'istanbul'
is set.
string[]
['**']
List of files included in coverage as glob patterns
string[]
[]
List of files excluded from coverage as glob patterns.
boolean
false
Do not show files with 100% statement, branch, and function coverage.
boolean
false
Check thresholds per file.
number
Threshold for lines.
number
Threshold for functions.
number
Threshold for branches.
number
Threshold for statements.
string[]
Set to array of class method names to ignore for coverage.
{ statements?: [number, number], functions?: [number, number], branches?: [number, number], lines?: [number, number] }
{ statements?: [number, number], functions?: [number, number], branches?: [number, number], lines?: [number, number] }
{ statements: [50, 80], functions: [50, 80], branches: [50, 80], lines: [50, 80] }
{ statements: [50, 80], functions: [50, 80], branches: [50, 80], lines: [50, 80] }
Watermarks for statements, lines, branches and functions.
boolean
Whether to include all files, including the untested ones into report.
string | RegExp
Run tests with full names matching the pattern. If you add OnlyRunThis
to this property, tests not containing the word OnlyRunThis
in the test name will be skipped.
import { expect, test } from 'vitest' // run test('OnlyRunThis', () => { expect(true).toBe(true) }) // skipped test('doNotRun', () => { expect(true).toBe(true) })
import { expect, test } from 'vitest' // run test('OnlyRunThis', () => { expect(true).toBe(true) }) // skipped test('doNotRun', () => { expect(true).toBe(true) })
boolean
false
Open Vitest UI (WIP)
boolean | number
false
Listen to port and serve API. When set to true, the default port is 51204
boolean
false
Will call .mockClear()
on all spies before each test. This will clear mock history, but not reset its implementation to the default one.
boolean
false
Will call .mockReset()
on all spies before each test. This will clear mock history and reset its implementation to an empty function (will return undefined
).
boolean
false
Will call .mockRestore()
on all spies before each test. This will clear mock history and reset its implementation to the original one.
{ web?, ssr? }
Determine the transform method of modules
RegExp[]
[/\.([cm]?[jt]sx?|json)$/]
Use SSR transform pipeline for the specified files.
Vite plugins will receive ssr: true
flag when processing those files.
RegExp[]
transformMode.ssr
First do a normal transform pipeline (targeting browser), then do a SSR rewrite to run the code in Node.
Vite plugins will receive ssr: false
flag when processing those files.
When you use JSX as component models other than React (e.g. Vue JSX or SolidJS), you might want to config as following to make .tsx
/ .jsx
transformed as client-side components:
import { defineConfig } from 'vitest/config' export default defineConfig({ test: { transformMode: { web: [/\.[jt]sx$/], }, }, })
import { defineConfig } from 'vitest/config' export default defineConfig({ test: { transformMode: { web: [/\.[jt]sx$/], }, }, })
PrettyFormatOptions
Format options for snapshot testing. These options are passed down to pretty-format
.
(testPath: string, snapExtension: string) => string
__snapshots__
directoryOverrides default snapshot path. For example, to store snapshots next to test files:
import { defineConfig } from 'vitest/config' export default defineConfig({ test: { resolveSnapshotPath: (testPath, snapExtension) => testPath + snapExtension, }, })
import { defineConfig } from 'vitest/config' export default defineConfig({ test: { resolveSnapshotPath: (testPath, snapExtension) => testPath + snapExtension, }, })
boolean
false
Allow tests and suites that are marked as only.
boolean
false
Ignore any unhandled errors that occur.
boolean
false
Vitest will not fail, if no tests will be found.
boolean
false
Show heap usage after each test. Useful for debugging memory leaks.
boolean | { include?, exclude? }
Configure if CSS should be processed. When excluded, CSS files will be replaced with empty strings to bypass the subsequent processing. CSS Modules will return a proxy to not affect runtime.
RegExp | RegExp[]
[]
RegExp pattern for files that should return actual CSS and will be processed by Vite pipeline.
RegExp | RegExp[]
[]
RegExp pattern for files that will return an empty CSS file.
{ classNameStrategy? }
{}
'stable' | 'scoped' | 'non-scoped'
'stable'
If you decide to process CSS files, you can configure if class names inside CSS modules should be scoped. By default, Vitest exports a proxy, bypassing CSS Modules processing. You can choose one of the options:
stable
: class names will be generated as _${name}_${hashedFilename}
, which means that generated class will stay the same, if CSS content is changed, but will change, if the name of the file is modified, or file is moved to another folder. This setting is useful, if you use snapshot feature.scoped
: class names will be generated as usual, respecting css.modules.generateScopeName
method, if you have one. By default, filename will be generated as _${name}_${hash}
, where hash includes filename and content of the file.non-scoped
: class names will stay as they are defined in CSS.number
5
A number of tests that are allowed to run at the same time marked with test.concurrent
.
Test above this limit will be queued to run when available slot appears.
false | { dir? }
Options to configure Vitest cache policy. At the moment Vitest stores cache for test results to run the longer and failed tests first.
string
node_modules/.vitest
Path to cache directory.
{ sequencer?, shuffle?, seed? }
Options for how tests should be sorted.
TestSequencerConstructor
BaseSequencer
A custom class that defines methods for sharding and sorting. You can extend BaseSequencer
from vitest/node
, if you only need to redefine one of the sort
and shard
methods, but both should exist.
Sharding is happening before sorting, and only if --shard
option is provided.
boolean
false
If you want tests to run randomly, you can enable it with this option, or CLI argument --sequence.shuffle
.
Vitest usually uses cache to sort tests, so long running tests start earlier - this makes tests run faster. If your tests will run in random order you will lose this performance improvement, but it may be useful to track tests that accidentally depend on another run previously.
number
Date.now()
Sets the randomization seed, if tests are running in random order.
© 2021-Present Anthony Fu
© 2021-Present Matias Capeletto
Licensed under the MIT License.
https://vitest.dev/config/