Skip to content

Commit

Permalink
feat: update
Browse files Browse the repository at this point in the history
Co-authored-by: veaba <[email protected]>
Co-authored-by: Jinjiang <[email protected]>
  • Loading branch information
3 people committed Dec 4, 2024
1 parent 638839b commit e6c7f41
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/zh/guide/advanced/reusability-composition.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function useUser(userId) {
}
```

要测试这个组合式函数,你可以在测试中创建一个简单的 `TestComponent``TestComponent` 应该以与真实组件相同的方式使用组合式函数
要测试这个组合式函数,你可以在测试中创建一个简单的 `TestComponent``TestComponent` 应该与真实组件相同的方式使用组合式函数

```typescript
// 模拟 API 请求
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/guide/advanced/vue-router.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ console.error node_modules/@vue/runtime-core/dist/runtime-core.cjs.js:211

同样,由于 Vue Router 4 的新异步特性,我们需要在进行任何断言之前 `await` 路由完成。

然而,在这种情况下,我们没有可以等待的 _hasNavigated_ 钩子。一种替代方法是使用从 Vue Test Utils 导出的 `flushPromises` 函数:
然而,在这种情况下,我们没有可以等待的 *hasNavigated* 钩子。一种替代方法是使用从 Vue Test Utils 导出的 `flushPromises` 函数:

```js {1,22}
import { mount, flushPromises } from '@vue/test-utils'
Expand Down
4 changes: 3 additions & 1 deletion docs/zh/migration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ module.exports = {
如果你使用快照测试并且注释节点泄漏到你的快照中,请注意 `comments` 现在始终[保留](https://vuejs.org/api/application.html#app-config-compileroptions-comments),并仅在生产中删除。你可以通过调整 `app.config.compilerOptions` 来覆盖此行为,以便在快照中也删除它们:
- 通过 `vue-jest`[配置](https://github.com/vuejs/vue-jest#compiler-options-in-vue-3)。
```js
// jest.config.js
module.exports = {
Expand All @@ -342,11 +343,12 @@ module.exports = {
}
}
```
- 通过 `@vue/test-utils` [`mountingOptions.global.config`](https://test-utils.vuejs.org/api/#global) 全局或逐个测试基础。
## 与 v1 的比较
这是一个针对来自 VTU 1 的用户的表格,比较 API。
这是一个针对来自 VTU 1 用户的表格,其比较了两者的 API。
### 基础 API
Expand Down

0 comments on commit e6c7f41

Please sign in to comment.