Skip to content

Commit

Permalink
docs: update Vue 3 repository URL (#2178)
Browse files Browse the repository at this point in the history
  • Loading branch information
richex-cn committed Sep 5, 2023
1 parent 69c57af commit 859178b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/fr/guide/index.md
Expand Up @@ -7,7 +7,7 @@ Ceci est la documentation pour Vue Test Utils v2, qui cible Vue 3.
En résumé :

- [Vue Test Utils 1](https://github.com/vuejs/vue-test-utils/) cible [Vue 2](https://github.com/vuejs/vue/).
- [Vue Test Utils 2](https://github.com/vuejs/test-utils/) cible [Vue 3](https://github.com/vuejs/vue-next/).
- [Vue Test Utils 2](https://github.com/vuejs/test-utils/) cible [Vue 3](https://github.com/vuejs/core/).

## Qu'est-ce que Vue Test Utils ?

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/index.md
Expand Up @@ -7,7 +7,7 @@ This is the documentation for Vue Test Utils v2, which targets Vue 3.
In short:

- [Vue Test Utils 1](https://github.com/vuejs/vue-test-utils/) targets [Vue 2](https://github.com/vuejs/vue/).
- [Vue Test Utils 2](https://github.com/vuejs/test-utils/) targets [Vue 3](https://github.com/vuejs/vue-next/).
- [Vue Test Utils 2](https://github.com/vuejs/test-utils/) targets [Vue 3](https://github.com/vuejs/core/).

## What is Vue Test Utils?

Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Expand Up @@ -33,7 +33,7 @@ type SlotDictionary = {
}

// From vue next
// https://github.com/vuejs/vue-next/blob/1f2a652a9d2e3bec472fb1786a4c16d6ccfa1fb1/packages/runtime-core/src/h.ts#L53-L58
// https://github.com/vuejs/core/blob/1f2a652a9d2e3bec472fb1786a4c16d6ccfa1fb1/packages/runtime-core/src/h.ts#L53-L58
type RawProps = VNodeProps & {
// used to differ from a single VNode object as children
__v_isVNode?: never
Expand Down
2 changes: 1 addition & 1 deletion tests/expose.spec.ts
Expand Up @@ -21,7 +21,7 @@ describe('expose', () => {
expect(vm.exposedState2Getter()).toBe('exposedState2')

// exposed ref can be changed and will affect the original ref
// @ts-ignore upstream issue, see https://github.com/vuejs/vue-next/issues/4397#issuecomment-957613874
// @ts-ignore upstream issue, see https://github.com/vuejs/core/issues/4397#issuecomment-957613874
expect(vm.exposedRef).toBe('exposedRef')
vm.exposedRef = 'newExposedRef'
expect(vm.exposedRef).toBe('newExposedRef')
Expand Down

0 comments on commit 859178b

Please sign in to comment.