From 9dea4a9aa7f779c5e0f072b43b06c05c832520e9 Mon Sep 17 00:00:00 2001 From: richex-cn Date: Fri, 1 Sep 2023 09:33:58 +0800 Subject: [PATCH] docs: update Vue 3 repository URL --- docs/fr/guide/index.md | 2 +- docs/guide/index.md | 2 +- src/types.ts | 2 +- tests/expose.spec.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/fr/guide/index.md b/docs/fr/guide/index.md index 3d34c0d3a..88a50d9f4 100644 --- a/docs/fr/guide/index.md +++ b/docs/fr/guide/index.md @@ -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 ? diff --git a/docs/guide/index.md b/docs/guide/index.md index 94d1a29e5..b7a980a29 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -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? diff --git a/src/types.ts b/src/types.ts index 9a845af57..46677534b 100644 --- a/src/types.ts +++ b/src/types.ts @@ -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 diff --git a/tests/expose.spec.ts b/tests/expose.spec.ts index 6212ddec3..28484e2fb 100644 --- a/tests/expose.spec.ts +++ b/tests/expose.spec.ts @@ -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')