迁移指南
迁移到 Vitest 2.0
默认数据池为 forks
为了提高稳定性,Vitest 2.0 将 pool
的默认配置改为 'fork'
。您可以在 PR中阅读完整的动机。
如果使用了 poolOptions
而未指定一个 pool
,则可能需要更新配置:
export default defineConfig({
test: {
poolOptions: {
threads: {
singleThread: true,
},
forks: {
singleFork: true,
},
}
}
})
钩子函数在堆栈中运行
在 Vitest 2.0 之前,所有钩子函数都是并行运行的。 在 2.0 中,所有钩子都是串行运行的。 除此之外,afterAll
/afterEach
以相反的顺序运行。
要恢复钩子的并行执行,请将 sequence.hooks
改为 'parallel'
:
export default defineConfig({
test: {
sequence: {
hooks: 'parallel',
},
},
})
suite.concurrent
同时运行所有测试
以前,在套件上指定 concurrent
时,并发测试仍会按套件分组并逐个运行。现在,它会遵循 jest 的行为,一次运行所有测试(仍受 maxConcurrency
限制)。
默认启用 V8 覆盖的 coverage.ignoreEmptyLines
将 coverage.ignoreEmptyLines
的默认值改为 true
。此更改将对用户的代码覆盖率报告产生重大影响。使用覆盖率阈值的项目很可能需要在此之后调整这些值。此更改仅影响默认的 coverage.provider.'v8'
: 'v8'`.
不再有watchExclude
选项
Vitest 使用 Vite 的监视器。您可以将排除项添加到 server.watch.ignored
:
export default defineConfig({
server: {
watch: {
ignored: ['!node_modules/examplejs']
}
}
})
--segfault-retry
删除
默认程序池更改后,不再需要此选项。如果遇到分离故障错误,请尝试切换到'forks'
池。如果问题仍然存在,请重现问题并打开一个新问题。
删除套件任务中的空任务
这是对高级task API的更改。以前,遍历 .suite
最终会导致使用空的内部套件,而不是文件任务。
这使得 .suite
成为可选项;如果任务是在顶层定义的,则不会有 suite。您可以回退到 .file
属性,该属性现在存在于所有任务中(包括文件任务本身,因此要小心不要陷入无休止的递归)。
这一更改还删除了 expect.getState().currentTestName
中的文件,并使 expect.getState().testPath
成为必填项。
task.meta
已添加到 JSON 报告器中
JSON 报告器现在会为每个断言结果打印 task.meta
。
简化的模拟函数通用类型 (e.g. vi.fn<T>
, Mock<T>
)
以前 vi.fn<TArgs, TReturn>
分别接受参数和返回值的两个泛型。现在改为直接接受一个函数类型 vi.fn<T>
以简化用法。
import { type Mock, vi } from 'vitest'
const add = (x: number, y: number): number => x + y
// using vi.fn<T>
const mockAdd = vi.fn<Parameters<typeof add>, ReturnType<typeof add>>()
const mockAdd = vi.fn<typeof add>()
// using Mock<T>
const mockAdd: Mock<Parameters<typeof add>, ReturnType<typeof add>> = vi.fn()
const mockAdd: Mock<typeof add> = vi.fn()
Accessing Resolved mock.results
Previously Vitest resolved mock.results
values if the function returned a Promise. Now there is a separate mock.settledResults
property that populates only when the returned Promise is resolved or rejected.
const fn = vi.fn().mockResolvedValueOnce('result')
await fn()
const result = fn.mock.results[0] // 'result'
const result = fn.mock.results[0] // 'Promise<result>'
const settledResult = fn.mock.settledResults[0] // 'result'
With this change, we also introduce new toHaveResolved*
matchers similar to toHaveReturned
to make migration easier if you used toHaveReturned
before:
const fn = vi.fn().mockResolvedValueOnce('result')
await fn()
expect(fn).toHaveReturned('result')
expect(fn).toHaveResolved('result')
浏览器模式
Vitest 浏览器模式在测试周期内发生了很多变化。您可以在GitHub discussion上阅读我们关于浏览器模式的理念。
大多数改动都是附加的,但也有一些小的突破性改动:
none
provider 更名为preview
#5842preview
provider 现在是默认的 #5842indexScripts
更名为orchestratorScripts
#5842
删除过时的选项
删除了一些过时的选项:
vitest typecheck
命令 - 使用vitest --typecheck
代替VITEST_JUNIT_CLASSNAME
和VITEST_JUNIT_SUITE_NAME
环境变量(改用 reporter 选项)- 检查
c8
覆盖率(使用 coverage-v8 代替) - 从
vitest
导出SnapshotEnvironment
- 改为从vitest/snapshot
导入 - 删除
SpyInstance
改用MockInstance
迁移到 Vitest 1.0
最低要求
Vitest 1.0 需要 Vite 5.0 和 Node.js 18 或更高版本。
所有 @vitest/*
子软件包都需要 Vitest 1.0 版本。
Snapshots 更新 #3961
快照中的引号不再转义,即使字符串只有一行,所有快照也都使用回车引号 (`)。
- 引号不再转义:
expect({ foo: 'bar' }).toMatchInlineSnapshot(`
Object {
- \\"foo\\": \\"bar\\",
+ "foo": "bar",
}
`)
- 单行快照现在使用"`"引号,而不是"'":
- expect('some string').toMatchInlineSnapshot('"some string"')
+ expect('some string').toMatchInlineSnapshot(`"some string"`)
对 @vitest/snapshot
也有修改。如果不直接使用它,则无需做任何更改。
- 我们不再需要扩展
SnapshotClient
以覆盖equalityCheck
方法:只需在启动实例时将其作为isEqual
传递即可。 client.setTest
更名为client.startCurrentRun
client.resetCurrent
更名为client.finishCurrentRun
。
Pools 标准化 #4172
We removed a lot of configuration options to make it easier to configure the runner to your needs. Please, have a look at migration examples if you rely on --threads
or other related flags.
我们删除了大量配置选项,以便根据需要配置运行程序。如果你已经使用了 --threads
或其他相关标记,请查看迁移示例。
--threads
现在是--pool=threads
--no-threads
现在是--pool=forks
--single-thread
现在是--poolOptions.threads.singleThread
--experimental-vm-threads
现在是--pool=vmThreads
--experimental-vm-worker-memory-limit
现在是--poolOptions.vmThreads.memoryLimit
--isolate
现在是--poolOptions.<pool-name>.isolate
和browser.isolate
test.maxThreads
现在是test.poolOptions.<pool-name>.maxThreads
test.minThreads
现在是test.poolOptions.<pool-name>.minThreads
test.useAtomics
现在是test.poolOptions.<pool-name>.useAtomics
test.poolMatchGlobs.child_process
现在是test.poolMatchGlobs.forks
test.poolMatchGlobs.experimentalVmThreads
现在是test.poolMatchGlobs.vmThreads
{
scripts: {
- "test": "vitest --no-threads"
// For identical behaviour:
+ "test": "vitest --pool forks --poolOptions.forks.singleFork"
// Or multi parallel forks:
+ "test": "vitest --pool forks"
}
}
{
scripts: {
- "test": "vitest --experimental-vm-threads"
+ "test": "vitest --pool vmThreads"
}
}
{
scripts: {
- "test": "vitest --isolate false"
+ "test": "vitest --poolOptions.threads.isolate false"
}
}
{
scripts: {
- "test": "vitest --no-threads --isolate false"
+ "test": "vitest --pool forks --poolOptions.forks.isolate false"
}
}
Coverage 的变化 #4265, #4442
选项 coverage.all
现在默认启用。这意味着,所有符合 coverage.include
模式的项目文件都将被处理,即使它们未被执行。
更改了覆盖阈值 API 的形状,现在它支持使用 glob 模式为特定文件指定阈值:
export default defineConfig({
test: {
coverage: {
- perFile: true,
- thresholdAutoUpdate: true,
- 100: true,
- lines: 100,
- functions: 100,
- branches: 100,
- statements: 100,
+ thresholds: {
+ perFile: true,
+ autoUpdate: true,
+ 100: true,
+ lines: 100,
+ functions: 100,
+ branches: 100,
+ statements: 100,
+ }
}
}
})
Mock 类型 #4400
删除了一些类型,改用 Jest 风格的 "Mock "命名。
- import { EnhancedSpy, SpyInstance } from 'vitest'
+ import { MockInstance } from 'vitest'
WARNING
SpyInstance
已被弃用,取而代之的是 MockInstance
,并会在下一个主要版本中移除。
Timer mocks #3925
vi.useFakeTimers()
不再自动模拟 process.nextTick
。 仍然可以通过使用 vi.useFakeTimers({ toFake: ['nextTick'] })
明确指定来模拟 process.nextTick
。
但是,在使用 --pool=forks
时,无法模拟 process.nextTick
。如果需要模拟 process.nextTick
,请使用不同的 --pool
选项。
从 Jest 迁移
Vitest 设计了与 Jest 兼容的 API ,方便你从 Jest 的迁移尽可能简单。尽管做出了这些努力,你仍然可能会遇到以下差异:
全局变量作为默认值
Jest 默认启用全局 API。然而 Vitest 没有。你既可以通过 globals
配置选项启用全局 API,也可以通过更新你的代码以便使用来自 vitest
模块的导入。
如果你决定禁用全局 API,请注意像 testing-library
这样的通用库不会自动运行 DOM cleanup。
模拟模块
在 Jest 中模拟一个模块时,工厂参数的返回值是默认导出。在 Vitest 中,工厂参数必须返回一个明确定义了每个导出的对象。例如,下面的 jest.mock
必须更新如下:
jest.mock('./some-path', () => 'hello')
vi.mock('./some-path', () => ({
default: 'hello',
}))
有关更深入的详细描述,请参阅 vi.mock
api section。
自动模拟行为
区别于 Jest,在 <root>/__mocks__
中的模拟模块只有在 vi.mock()
被调用时才会加载。如果你需要它们像在 Jest 中一样,在每个测试中都被模拟,你可以在 setupFiles
中模拟它们。
导入模拟包的原始版本
如果你只需要模拟一个 package 的部分功能,你可能之前使用了 Jest 的 requireActual
函数。在 Vitest 中,你应该将这些调用替换为 vi.importActual
。
const { cloneDeep } = jest.requireActual('lodash/cloneDeep')
const { cloneDeep } = await vi.importActual('lodash/cloneDeep')
将模拟扩展到外部库
在 Jest 的默认情况下,当模拟一个模块并希望将此模拟扩展到使用相同模块的其他外部库时,您应该明确告知您希望模拟哪个第三方库,这样外部库就会成为您源代码的一部分,方法是使用 server.deps.inline.
server.deps.inline: ["lib-name"]
expect.getState().currentTestName
Vitest 的 test
名称用 >
符号连接,以便于区分测试和套件,而 Jest 则使用空格 ()。
- `${describeTitle} ${testTitle}`
+ `${describeTitle} > ${testTitle}`
Envs
Jest 导出各种 jasmine
全局 API (例如 jasmine.any()
)。任何此类实例都需要迁移成 Vitest 的对应 API 。
测试环境
如果之前没有设置,Vitest 会像 Jest 一样,把 NODE_ENV
设置为 test
。 Vitest 也有一个 JEST_WORKER_ID
的对应项,是 VITEST_WORKER_ID
,所以如果你依赖它,不要忘记重命名它。
属性替换
如果你想修改测试环境,你会在 Jest 中使用 replaceProperty API,你可以使用 vi.stubEnv 或者 vi.spyOn
也可以在 Vitest 中执行此操作。
从 Vitest v0.10.0 开始,声明测试的回调样式被弃用。 你可以重写它们以使用 async
/await
函数,或者使用 Promise 来模仿回调样式。
it('should work', (done) => {
it('should work', () => new Promise(done => {
// ...
done()
})
}))
钩子
beforeAll
/beforeEach
钩子可能在 Vitest 的 teardown 函数中返回。因此,如果它们返回的不是 undefined
或 null
,你可能需要重写你的钩子声明:
beforeEach(() => setActivePinia(createTestingPinia()))
beforeEach(() => {
setActivePinia(createTestingPinia())
})
在 Jest 中,钩子是按顺序调用的(一个接一个)。默认情况下,Vitest 并行运行钩子。要使用 Jest 的行为,请更新 sequence.hooks
选项:
export default defineConfig({
test: {
sequence: {
hooks: 'list',
},
},
})
类型
Vitest 没有等效于 jest
的命名空间,因此你需要直接从 Vitest
导入类型:
let fn: jest.Mock<(name: string) => number>
import type { Mock } from 'vitest'
let fn: Mock<(name: string) => number>
定时器
如果你之前在测试中使用了 jest.setTimeout ,那么你需要迁移到 Vitest 中的vi.setConfig
:
jest.setTimeout(5_000)
vi.setConfig({ testTimeout: 5_000 })
Vue 快照
如果你以前在 vue-cli preset 中使用 Jest,那么这不是一个 Jest 独有的新特性。你可能需要安装 jest-serializer-vue
包,然后在 setupFiles 中配置:
import { defineConfig } from 'vite'
export default defineConfig({
test: {
setupFiles: ['./tests/unit/setup.js'],
},
})
import vueSnapshotSerializer from 'jest-serializer-vue'
expect.addSnapshotSerializer(vueSnapshotSerializer)
否则你的快照将出现大量的 "
字符。