Skip to content

Commit 4365189

Browse files
authored
Update README.md
1 parent 4d030bb commit 4365189

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The next iteration of Vue Test Utils. It targets Vue 3.
77
- yarn: `yarn add @vue/test-utils@next --dev`
88
- npm: `npm install @vue/test-utils@next --save-dev`
99

10-
Get started with the [documentation](https://vue-test-utils.vuejs.org/v2/).
10+
Get started with the [documentation](https://next.vue-test-utils.vuejs.org/).
1111

1212
## Coming from Vue 2 + Vue Test Utils?
1313

@@ -21,9 +21,9 @@ There is [`vue-jest`](https://github.com/vuejs/vue-jest) for loading `.vue` file
2121

2222
If you don't want to configure things, you can download a repository with Vue 3, `@vue/test-utils@next`, `vue-jest@next` and TypeScript configured [here](https://github.com/lmiller1990/vtu-next-demo).
2323

24-
## What works?
24+
## Documentation
2525

26-
See the [docs](https://vuejs.github.io/vue-test-utils-next-docs/guide/introduction.html).
26+
See the [docs](https://next.vue-test-utils.vuejs.org/).
2727

2828
## Development
2929

@@ -33,9 +33,9 @@ There is still some work left to do. See issues for some basic TODOs, or the tab
3333

3434
## Contributing
3535

36-
This is still quite alpha, but we plan on moving to RC sooner than later. If you want to add a feature, have a hack or ping someone in Discord to chat, or check out the issues and project board.
36+
We plan on moving to RC sooner than later. If you want to add a feature, have a hack or ping someone in Discord to chat, or check out the issues and project board.
3737

38-
There's also some [work left to do in docs](https://github.com/vuejs/vue-test-utils-next-docs/issues).
38+
There's also some [work left to do in docs](https://github.com/vuejs/vue-test-utils-next/issues?q=is%3Aopen+is%3Aissue+label%3Adocumentation).
3939

4040
## Comparison with Vue Test Utils beta (targeting Vue 2)
4141

@@ -47,24 +47,24 @@ This is table for those coming from VTU 1, comparing the two APIs. Some things a
4747

4848
### Mounting Options
4949

50-
| option | status | notes |
51-
| ---------------- | ------ | ----------------------------------------------------------------------------------------- |
50+
| option | status | notes |
51+
| ---------------- | ------ | ----------------------------------------------------------------------------------- |
5252
| data ||
53-
| slots || has not been tested vigorously. Please try it out. |
54-
| mocks || nested in [`global`](https://vuejs.github.io/vue-test-utils-next-docs/api/#global) |
55-
| propsData || now called `props` |
56-
| provide || nested in [`global`](https://vuejs.github.io/vue-test-utils-next-docs/api/#global) |
57-
| mixins || (new!) nested in [`global`](https://vuejs.github.io/vue-test-utils-next-docs/api/#global) |
58-
| plugins || (new!) nested in [`global`](https://vuejs.github.io/vue-test-utils-next-docs/api/#global) |
59-
| component || (new!) nested in [`global`](https://vuejs.github.io/vue-test-utils-next-docs/api/#global) |
60-
| directives || (new!) nested in [`global`](https://vuejs.github.io/vue-test-utils-next-docs/api/#global) |
53+
| slots || has not been tested vigorously. Please try it out. |
54+
| mocks || nested in `global` |
55+
| propsData || now called `props` |
56+
| provide || nested in `global` |
57+
| mixins || (new!) nested in `global` |
58+
| plugins || (new!) nested in `global` |
59+
| component || (new!) nested in `global` |
60+
| directives || (new!) nested in `global` |
6161
| stubs ||
62-
| attachToDocument || renamed `attachTo`. See [here](https://github.com/vuejs/vue-test-utils/pull/1492) |
62+
| attachToDocument || renamed `attachTo`. See [here](https://github.com/vuejs/vue-test-utils/pull/1492) |
6363
| attrs ||
64-
| scopedSlots | ⚰️ | scopedSlots are merged with slots in Vue 3 |
65-
| context | ⚰️ | different from Vue 2, does not make sense anymore. |
66-
| localVue | ⚰️ | may not make sense anymore since we do not mutate the global Vue instance in Vue 3. |
67-
| listeners | ⚰️ | no longer exists in Vue 3 |
64+
| scopedSlots | ⚰️ | scopedSlots are merged with `slots` in Vue 3 |
65+
| context | ⚰️ | different from Vue 2, does not make sense anymore. |
66+
| localVue | ⚰️ | may not make sense anymore since we do not mutate the global Vue instance in Vue 3. |
67+
| listeners | ⚰️ | no longer exists in Vue 3 |
6868
| parentComponent | ⚰️ |
6969

7070
### Wrapper API (mount)

0 commit comments

Comments
 (0)